readReadyEvent

readReadyEvent(listener: JadeMultiWorkerTcpTransport input;
               conn:     JadeMultiWorkerTcpConnection input);

When a ready event occurs, the ReadReady connection event is queued and is delivered to a worker process via the readReadyEvent callback method in your implementation of the JadeMultiWorkerTcpTransportIF interface.

The listener parameter is populated with the transport object and the conn parameter with the connection that has the available data.

To avoid a continuous loop, your implementing callback method must read some data.