yar_client

Crates.ioyar_client
lib.rsyar_client
version0.1.3
sourcesrc
created_at2018-04-10 18:48:50.193909
updated_at2018-04-12 17:26:04.218561
descriptionyar client json support only
homepagehttps://github.com/hanskorg/yar-client-rust.git
repositoryhttps://github.com/hanskorg/yar-client-rust.git
max_upload_size
id59932
size23,774
(hanskorg)

documentation

https://github.com/hanskorg/yar-client-rust/blob/master/README.md

README

yarclient

Introduction

`yar_client` is a crate what can transport info to Yar Server what PHP protocol tool,
More about Yar see: <https://github.com/laruence/yar>

Build Status Build Status

Usage

Add this to your Cargo.toml:

[dependencies]
yar_client = "0.1.0"

Examples

 use yar_client::*;
 let mut client = Builder::default()
 .set_url("http://10limi.com/rpc.php").unwrap()
 .set_opt(YAR_OPT_PACKAGER, "JSON").unwrap()
 .set_opt(YAR_OPT_CONNECT_TIMEOUT, 10).unwrap()
 .set_opt(YAR_OPT_TIMEOUT, 30).unwrap()
 .set_token("token")
 .set_provider("org.hansk.net.yarclient")
 .build().unwrap();
 let ret = client.call("test", vec!["1".to_string(), "2".to_string()]).unwrap();

Builder

yar_client::Builder::set_url(&str) -> Builder;

Set up Yar server address

 let client = Builder::default().set_url("http://10limi.com/rpc.php")?

yar_client::Builder::set_opt(&str) -> Builder;

use yar_client::Build build a new client,need call *yar_client::Builder::set_url()*, and can call *set_opt()* set up some options, this is the list of options:

  • YAR_OPT_PACKAGER :JSON ��MsgPack��PHP , the msg body encoding method. current version only can use JSON
  • YAR_OPT_PERSISTENT , curl lib support keep-alive
  • YAR_OPT_TIMEOUT unit second , transport timeout
  • YAR_OPT_CONNECT_TIMEOUT unit second ,TCP connect timeout
   let client = Builder::default().set_opt(..., ...)?

yar_client::Builder::set_token(&str) -> Builder;

More About token see php yar manual, default value is `yar_client_rust`
    let client = Builder::default().set_token("...")

yar_client::Builder::set_provider(&str) -> Builder;

More About token see php yar manual, default value is `yar_client_rust`
let client = Builder::default().set_provider("...")?
Commit count: 31

cargo fmt