__init__(self,
serv_addr,
path,
local_server=None,
poolSize=0,
socket_error_handler=<function default_socket_error_handler at 0x85a025c>,
compress=True,
usingssl=True)
(Constructor)
| source code
|
Create the threaded client. |serv_addr| The server address
(host,port). |path| The path where is listening the remote host, it has
the protocol using query_string '?' notation. |poolSize| The maximum size
of the pool of CommunicationClient objects |local_server| If is set to a
CommunicationServer, when a method is called the arguments are passed by
reference and the remote server will try to connect to this server (port
and location). The IP address is the used to contact the remote server.
|socket_error_handler| The socket error handler. |compress| If True it
uses gzip compression to content |usingssl| If True it uses the https
protocol to perform connections
|