Uses of Interface
com.iizix.nio.WebSocketCommListener
Packages that use WebSocketCommListener Package Description com.iizix.comm com.iizix.jetty com.iizix.nio com.iizix.server com.iizix.server.loadbalancer com.iizix.server.monitor com.iizix.server.run.remote Uses of WebSocketCommListener in com.iizix.comm
Subinterfaces of WebSocketCommListener in com.iizix.comm Modifier and Type Interface Description interface
IServerWebSocketCommListener
Interface that an end point must return in case communication is accepted.Constructors in com.iizix.comm with parameters of type WebSocketCommListener Constructor Description WebSocketComm(WebSocketCommProps properties, Worker worker, WebSocketCommListener listener, javax.net.ssl.SSLEngine engine)
Creates a new WebSocket Client Communication channel as UNINITIALIZED.WebSocketComm(WebSocketCommProps properties, Worker worker, java.nio.channels.SocketChannel channel, WebSocketCommListener listener, WebSocketAcceptor acceptor)
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.WebSocketServerComm(WebSocketServerCommProps properties, Worker worker, WebSocketCommListener listener, WebSocketAcceptor acceptor)
Constructs the WebSocket Server communication engine for the worker in question.Uses of WebSocketCommListener in com.iizix.jetty
Methods in com.iizix.jetty with parameters of type WebSocketCommListener Modifier and Type Method Description void
InternalWebSocket. setListener(WebSocketCommListener listener)
Assigns the listener.Uses of WebSocketCommListener in com.iizix.nio
Constructors in com.iizix.nio with parameters of type WebSocketCommListener Constructor Description 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.Uses of WebSocketCommListener in com.iizix.server
Classes in com.iizix.server that implement WebSocketCommListener Modifier and Type Class Description class
AbstractEndPoint
An implementation of a common end point for an Editor, Server or Monitor.class
ServerSession
The main class for an Server session running in the Server.Uses of WebSocketCommListener in com.iizix.server.loadbalancer
Classes in com.iizix.server.loadbalancer that implement WebSocketCommListener Modifier and Type Class Description class
LoadBalancerEndPoint
The Load Balancer end point web socket connection.Uses of WebSocketCommListener in com.iizix.server.monitor
Classes in com.iizix.server.monitor that implement WebSocketCommListener Modifier and Type Class Description class
VirtualizedMonitorEndPoint
End point for the Virtualized Monitor that transports a proxy of a VirtualsPropCnr of a client to a viewer or monitor.Uses of WebSocketCommListener in com.iizix.server.run.remote
Classes in com.iizix.server.run.remote that implement WebSocketCommListener Modifier and Type Class Description class
RemoteBuilderEndPoint
End point for the Remote Customized iiziRun Builder that transports a proxy of a RuntimeBuilderProps to build the app.