Uses of Interface
org.apache.wicket.protocol.ws.api.IWebSocketConnection

Packages that use IWebSocketConnection
org.apache.wicket.protocol.ws.api   
 

Uses of IWebSocketConnection in org.apache.wicket.protocol.ws.api
 

Classes in org.apache.wicket.protocol.ws.api that implement IWebSocketConnection
 class AbstractWebSocketConnection
          Abstract class handling the Web Socket broadcast messages.
 

Methods in org.apache.wicket.protocol.ws.api that return IWebSocketConnection
 IWebSocketConnection SimpleWebSocketConnectionRegistry.getConnection(Application application, String sessionId, Integer pageId)
           
 IWebSocketConnection IWebSocketConnectionRegistry.getConnection(Application application, String sessionId, Integer pageId)
           
 IWebSocketConnection WebSocketResponse.getContainerResponse()
           
 IWebSocketConnection IWebSocketConnection.sendMessage(byte[] message, int offset, int length)
          Sends a binary message to the client.
 IWebSocketConnection IWebSocketConnection.sendMessage(String message)
          Sends a text message to the client.
 

Methods in org.apache.wicket.protocol.ws.api that return types with arguments of type IWebSocketConnection
 Collection<IWebSocketConnection> SimpleWebSocketConnectionRegistry.getConnections(Application application)
          Returns a collection of currently active websockets.
 Collection<IWebSocketConnection> IWebSocketConnectionRegistry.getConnections(Application application)
           
 

Methods in org.apache.wicket.protocol.ws.api with parameters of type IWebSocketConnection
protected  void AbstractWebSocketProcessor.onConnect(IWebSocketConnection connection)
          A helper that registers the opened connection in the application-level registry.
 void SimpleWebSocketConnectionRegistry.setConnection(Application application, String sessionId, Integer pageId, IWebSocketConnection connection)
           
 void IWebSocketConnectionRegistry.setConnection(Application application, String sessionId, Integer pageId, IWebSocketConnection connection)
          Adds a new connection into the registry at the specified coordinates (application+session+page)
 

Constructors in org.apache.wicket.protocol.ws.api with parameters of type IWebSocketConnection
WebSocketRequestHandler(Component component, IWebSocketConnection connection)
           
WebSocketResponse(IWebSocketConnection conn)
           
 



Copyright © 2006–2013 Apache Software Foundation. All rights reserved.