connectionEvent

connectionEvent(listener: JadeMultiWorkerTcpTransport input;
                conn:     JadeMultiWorkerTcpConnection input;
                type:     Integer;
                info:     Any);

When a connection has been idle for the maximum number of seconds specified in the JadeMultiWorkerTcpConnection class idleTimeout property, an IdleTimeout connection event is queued and is delivered to a worker process via the connectionEvent 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. The type parameter is set to ConnEvType_IdleTimeout and the value of the info parameter is null.