Uses of Class
com.iizix.nio.WorkerNIO
Packages that use WorkerNIO Package Description com.iizix com.iizix.nio Uses of WorkerNIO in com.iizix
Subclasses of WorkerNIO in com.iizix Modifier and Type Class Description class
Worker
The Worker is a class that handles all communication with "plain" sockets, received and sent (pending) messages to connectors, along with handling the session queue.Methods in com.iizix that return WorkerNIO Modifier and Type Method Description WorkerNIO
WorkerTask. getWorker()
Gets the worker associated with this task.Uses of WorkerNIO in com.iizix.nio
Constructors in com.iizix.nio with parameters of type WorkerNIO Constructor Description SocketCommNIO(WorkerNIO worker, java.nio.channels.SocketChannel socketChannel, SocketCommListener listener, boolean isVerbose)
Creates a new Socket Client Communication channel from a Server Socket Accept.SocketCommNIO(java.lang.String host, int port, java.lang.String bindAddress, WorkerNIO worker, SocketCommListener listener, boolean isVerbose, javax.net.ssl.SSLEngine engine)
Creates a new Socket Client Communication channel as UNINITIALIZED.WebSocketCommNIO(WorkerNIO worker, boolean isSecure, int version, java.lang.String[] subProtocols, boolean doFailForUnsupportedSubProtocol, int timeoutConnectClose, java.nio.channels.SocketChannel channel, WebSocketCommListener listener, WebSocketAcceptor acceptor, boolean isVerbose)
Creates a new WebSocket Client Communication channel from an accepted socket connection and sets it to as CHECKING_CONNECT_REQUEST, before the negotiation is completed and then becomes CONNECTED.WebSocketCommNIO(java.lang.String requestURI, java.lang.String host, int port, int version, java.lang.String[] subProtocols, boolean isOriginValidated, int timeoutConnectClose, java.lang.String bindAddress, WorkerNIO worker, WebSocketCommListener listener, boolean isVerbose, javax.net.ssl.SSLEngine engine)
Creates a new WebSocket Client Communication channel as UNINITIALIZED.