Uses of Interface
org.webbitserver.WebSocketConnection

Packages that use WebSocketConnection
org.webbitserver   
org.webbitserver.handler   
org.webbitserver.handler.logging   
org.webbitserver.netty   
org.webbitserver.stub   
org.webbitserver.wrapper   
 

Uses of WebSocketConnection in org.webbitserver
 

Methods in org.webbitserver that return WebSocketConnection
 WebSocketConnection WebSocketConnection.close()
           
 WebSocketConnection WebSocketConnection.data(String key, Object value)
           
 WebSocketConnection WebSocketConnection.ping(byte[] message)
          Sends a ping frame
 WebSocketConnection WebSocketConnection.pong(byte[] message)
          Sends a pong frame
 WebSocketConnection WebSocketConnection.send(byte[] message)
          Sends a binary frame
 WebSocketConnection WebSocketConnection.send(byte[] message, int offset, int length)
          Sends a binary frame
 WebSocketConnection WebSocketConnection.send(String message)
          Sends a text frame
 WebSocketConnection HttpControl.upgradeToWebSocketConnection(WebSocketHandler handler)
           
 WebSocketConnection HttpControl.webSocketConnection()
           
 

Methods in org.webbitserver with parameters of type WebSocketConnection
 void BaseWebSocketHandler.onClose(WebSocketConnection connection)
           
 void WebSocketHandler.onClose(WebSocketConnection connection)
          Called when a connection is closed.
 void BaseWebSocketHandler.onMessage(WebSocketConnection connection, byte[] msg)
           
 void WebSocketHandler.onMessage(WebSocketConnection connection, byte[] msg)
           
 void BaseWebSocketHandler.onMessage(WebSocketConnection connection, String msg)
           
 void WebSocketHandler.onMessage(WebSocketConnection connection, String msg)
           
 void BaseWebSocketHandler.onOpen(WebSocketConnection connection)
           
 void WebSocketHandler.onOpen(WebSocketConnection connection)
           
 void BaseWebSocketHandler.onPing(WebSocketConnection connection, byte[] msg)
           
 void WebSocketHandler.onPing(WebSocketConnection connection, byte[] msg)
           
 void BaseWebSocketHandler.onPong(WebSocketConnection connection, byte[] msg)
           
 void WebSocketHandler.onPong(WebSocketConnection connection, byte[] msg)
           
 

Uses of WebSocketConnection in org.webbitserver.handler
 

Methods in org.webbitserver.handler with parameters of type WebSocketConnection
 void ReconnectingWebSocketHandler.onClose(WebSocketConnection connection)
           
 void ReconnectingWebSocketHandler.onMessage(WebSocketConnection connection, byte[] msg)
           
 void ReconnectingWebSocketHandler.onMessage(WebSocketConnection connection, String msg)
           
 void ReconnectingWebSocketHandler.onOpen(WebSocketConnection connection)
           
 void ReconnectingWebSocketHandler.onPing(WebSocketConnection connection, byte[] msg)
           
 void ReconnectingWebSocketHandler.onPong(WebSocketConnection connection, byte[] msg)
           
 

Uses of WebSocketConnection in org.webbitserver.handler.logging
 

Methods in org.webbitserver.handler.logging with parameters of type WebSocketConnection
 void LogSink.webSocketConnectionClose(WebSocketConnection connection)
           
 void SimpleLogSink.webSocketConnectionClose(WebSocketConnection connection)
           
 void LogSink.webSocketConnectionOpen(WebSocketConnection connection)
           
 void SimpleLogSink.webSocketConnectionOpen(WebSocketConnection connection)
           
 void LogSink.webSocketInboundData(WebSocketConnection connection, byte[] message)
           
 void SimpleLogSink.webSocketInboundData(WebSocketConnection connection, byte[] data)
           
 void LogSink.webSocketInboundData(WebSocketConnection connection, String data)
           
 void SimpleLogSink.webSocketInboundData(WebSocketConnection connection, String data)
           
 void LogSink.webSocketInboundPing(WebSocketConnection connection, byte[] msg)
           
 void SimpleLogSink.webSocketInboundPing(WebSocketConnection connection, byte[] msg)
           
 void LogSink.webSocketInboundPong(WebSocketConnection connection, byte[] msg)
           
 void SimpleLogSink.webSocketInboundPong(WebSocketConnection connection, byte[] msg)
           
 void LogSink.webSocketOutboundData(WebSocketConnection connection, byte[] data)
           
 void SimpleLogSink.webSocketOutboundData(WebSocketConnection connection, byte[] data)
           
 void LogSink.webSocketOutboundData(WebSocketConnection connection, String data)
           
 void SimpleLogSink.webSocketOutboundData(WebSocketConnection connection, String data)
           
 void LogSink.webSocketOutboundPing(WebSocketConnection connection, byte[] msg)
           
 void SimpleLogSink.webSocketOutboundPing(WebSocketConnection connection, byte[] msg)
           
 void LogSink.webSocketOutboundPong(WebSocketConnection connection, byte[] msg)
           
 void SimpleLogSink.webSocketOutboundPong(WebSocketConnection connection, byte[] msg)
           
 

Uses of WebSocketConnection in org.webbitserver.netty
 

Classes in org.webbitserver.netty that implement WebSocketConnection
 class NettyWebSocketConnection
           
 

Methods in org.webbitserver.netty that return WebSocketConnection
 WebSocketConnection NettyHttpControl.upgradeToWebSocketConnection(WebSocketHandler webSocketHandler)
           
 

Uses of WebSocketConnection in org.webbitserver.stub
 

Classes in org.webbitserver.stub that implement WebSocketConnection
 class StubConnection
          Implementation of EventSourceConnection and WebSocketConnection that is easy to construct and makes it easy to inspect results.
 

Methods in org.webbitserver.stub that return WebSocketConnection
 WebSocketConnection StubHttpControl.upgradeToWebSocketConnection(WebSocketHandler handler)
           
 WebSocketConnection StubHttpControl.webSocketConnection()
           
 

Methods in org.webbitserver.stub with parameters of type WebSocketConnection
 StubHttpControl StubHttpControl.webSocketConnection(WebSocketConnection connection)
           
 

Constructors in org.webbitserver.stub with parameters of type WebSocketConnection
StubHttpControl(HttpRequest request, HttpResponse response, WebSocketConnection connection)
           
StubHttpControl(WebSocketConnection connection)
           
 

Uses of WebSocketConnection in org.webbitserver.wrapper
 

Classes in org.webbitserver.wrapper that implement WebSocketConnection
 class WebSocketConnectionWrapper
           
 

Methods in org.webbitserver.wrapper that return WebSocketConnection
 WebSocketConnection WebSocketConnectionWrapper.originalControl()
           
 WebSocketConnection WebSocketConnectionWrapper.underlyingControl()
           
 WebSocketConnection HttpControlWrapper.upgradeToWebSocketConnection(WebSocketHandler handler)
           
 WebSocketConnection HttpControlWrapper.webSocketConnection()
           
 

Methods in org.webbitserver.wrapper with parameters of type WebSocketConnection
 WebSocketConnectionWrapper WebSocketConnectionWrapper.underlyingControl(WebSocketConnection control)
           
 

Constructors in org.webbitserver.wrapper with parameters of type WebSocketConnection
WebSocketConnectionWrapper(WebSocketConnection connection)
           
 



Copyright © 2013. All Rights Reserved.