The Yar_Client class
The client side of the Yar RPC framework. A client is bound to a single service address; invoking any undefined method on it issues a remote call with that method name and the given arguments.
Intro
The client side of the Yar RPC framework. A client is bound to a single service address; invoking any undefined method on it issues a remote call with that method name and the given arguments.
Class synopsis
Properties
_protocolRead-only. The protocol derived from the service address: one of
YAR_CLIENT_PROTOCOL_HTTP,YAR_CLIENT_PROTOCOL_TCPorYAR_CLIENT_PROTOCOL_UNIX._uriRead-only. The service address the client was created with.
_optionsRead-only. An Array of the options set on this client, keyed by the
YAR_OPT_*constants, or null if none were set._runningRead-only. Whether a call issued by this client is currently in progress.
Yar-client