The instances of asynrole.Manager class have the following methods:
Attempt to send request data item reqMsg (string) to remote server by either dstAddr address (given in socket module notation), if specified, or default destination whenever given on asynrole.Manager class instaniation.
The cbFun argument must be a reference to a callback function to be invoked by asyncore on data arrival. This function must support the following API:
cbFun(cbCtx, (srcAddr, rspMsg), (excType, excValue, excTraceback))
where:
The cbFun() function will always be invoked by asyncore following each manager.send() call to either return server reply on successful data exchange, or exception details on error.
Objects of asynrole.Manager class have no public instance variables.