Uses of Interface
com.iizix.nio.IWebSocketComm
Package
Description
Uses of IWebSocketComm in com.iizix.comm
Modifier and TypeMethodDescriptionTransactionComm.setWebSocket
(IWebSocketComm comm, Object endPoint) Assigns the web socket interface and retrieves the listener for use with external web servers.Uses of IWebSocketComm in com.iizix.comm.test
Modifier and TypeMethodDescriptionTransactionProcessor.isRequestURIAccepted
(IWebSocketComm comm, String uri, Map<String, List<String>> headerFields) Called to check if a request URI can be accepted.Uses of IWebSocketComm in com.iizix.jetty
Modifier and TypeClassDescriptionclass
The internal web socket for the server side.Uses of IWebSocketComm in com.iizix.nio
Modifier and TypeMethodDescriptionWebSocketAcceptor.isRequestURIAccepted
(IWebSocketComm comm, String uri, Map<String, List<String>> headerFields) Called to check if a request URI can be accepted.void
WebSocketCommListener.onCommClosed
(IWebSocketComm comm, int code, String reason) Called when the communication link is closed.void
WebSocketCommListener.onCommClosing
(IWebSocketComm comm) Called when the communication link is closing.void
WebSocketCommListener.onCommConnected
(IWebSocketComm comm) Called when the communication link is connected.void
WebSocketCommListener.onCommData
(IWebSocketComm comm, byte[] data, int offset, int len) Called when the communication link has received binary data.void
WebSocketCommListener.onCommData
(IWebSocketComm comm, String data) Called when the communication link has received String data.void
WebSocketCommListener.onCommError
(IWebSocketComm comm, Throwable e) Called when the communication link is closed.void
WebSocketCommListener.onCommHeartBeat
(IWebSocketComm comm, long duration) Called when a heart-beat frame is received.void
WebSocketCommListener.onCommOpen
(IWebSocketComm comm) Called when the communication link is opened.void
WebSocketCommListener.onCommTimeout
(IWebSocketComm comm, boolean isReadTimeout) Called when the communication link has timed out on a read or write operation.Uses of IWebSocketComm in com.iizix.server
Modifier and TypeMethodDescriptionIEndPointConstructor.createInstance
(ServerShell server, ThreadGroup serverThreadGroup, long sessionID, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields, OBJECT object) Creates a new end point.AbstractEndPoint.getWebSocketCommListener
(IWebSocketComm comm) Gets the WebSocketCommListener for the end point.IEndPoint.getWebSocketCommListener
(IWebSocketComm comm) Gets the WebSocketCommListener for the end point.IEndPointConstructor.isHandled
(ServerShell server, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields) Checks if this end point constructor handles this URI.final Object
ServerShell.isRequestURIAccepted
(IWebSocketComm comm, String uri, Map<String, List<String>> headerFields) Called to check if a request URI can be accepted.void
AbstractEndPoint.onCommClosed
(IWebSocketComm comm, int code, String reason) Called when the communication link is closed.void
AbstractEndPoint.onCommClosing
(IWebSocketComm comm) Called when the communication link is closing.void
AbstractEndPoint.onCommConnected
(IWebSocketComm comm) Called when the communication link is connected.void
AbstractEndPoint.onCommData
(IWebSocketComm comm, byte[] _data, int offset, int len) Called when the communication link has received binary data.void
AbstractEndPoint.onCommData
(IWebSocketComm comm, String data) Called when the communication link has received String data.void
AbstractEndPoint.onCommError
(IWebSocketComm comm, Throwable e) Called when the communication link is closed.void
AbstractEndPoint.onCommHeartBeat
(IWebSocketComm comm, long duration) Called when a heart-beat frame is received.void
AbstractEndPoint.onCommOpen
(IWebSocketComm comm) Called when the communication link is opened.void
AbstractEndPoint.onCommTimeout
(IWebSocketComm comm, boolean isReadTimeout) Called when the communication link has timed out on a read or write operation.ModifierConstructorDescriptionAbstractEndPoint
(IEndPoint.Type endPointType, String name, long sessionID, IWebSocketComm comm, ServerShell server, ThreadGroup serverThreadGroup, HashMap<String, String> classNameMap, ClassLoader contextClassLoader) Creates a new EndPoint instance.ServerSession
(long sessionID, IWebSocketComm comm, ServerShell server, ThreadGroup serverThreadGroup) Creates a new ServerSession instance.Uses of IWebSocketComm in com.iizix.server.client
Modifier and TypeMethodDescriptionClientEndPointConstructor.createInstance
(ServerShell server, ThreadGroup serverThreadGroup, long sessionID, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields, Object object) Creates a new end point.ClientEndPoint.getWebSocketCommListener
(IWebSocketComm comm) Gets the WebSocketCommListener for the end point.FailedReconnectClientEndPoint.getWebSocketCommListener
(IWebSocketComm comm) Gets the WebSocketCommListener for the end point.ClientEndPointConstructor.isHandled
(ServerShell server, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields) Checks if this end point constructor handles this URI.Uses of IWebSocketComm in com.iizix.server.monitor
Modifier and TypeMethodDescriptionVirtualizedMonitorEndPointConstructor.createInstance
(ServerShell server, ThreadGroup serverThreadGroup, long sessionID, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields, Object object) Creates a new end point.VirtualizedMonitorEndPointConstructor.isHandled
(ServerShell server, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields) Checks if this end point constructor handles this URI.Uses of IWebSocketComm in com.iizix.server.run.remote
Modifier and TypeMethodDescriptionRemoteBuilderEndPointConstructor.createInstance
(ServerShell server, ThreadGroup serverThreadGroup, long sessionID, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields, Object object) Creates a new end point.RemoteBuilderEndPointConstructor.isHandled
(ServerShell server, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields) Checks if this end point constructor handles this URI.Uses of IWebSocketComm in com.iizix.server.vsviewer
Modifier and TypeMethodDescriptionVSViewerEndPointConstructor.createInstance
(ServerShell server, ThreadGroup serverThreadGroup, long sessionID, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields, Object object) Creates a new end point.VSViewerEndPoint.getWebSocketCommListener
(IWebSocketComm comm) Gets the WebSocketCommListener for the end point.VSViewerEndPointConstructor.isHandled
(ServerShell server, IWebSocketComm comm, String uri, String query, Map<String, List<String>> headerFields) Checks if this end point constructor handles this URI.