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

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

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

Methods in org.apache.wicket.protocol.ws with parameters of type IWebSocketConnection
 org.apache.wicket.request.http.WebResponse WebSocketSettings.newWebSocketResponse(IWebSocketConnection connection)
          A factory method for the WebResponse that should be used to write the response back to the client/browser
 

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 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 with parameters of type IWebSocketConnection
protected  void AbstractWebSocketProcessor.onConnect(IWebSocketConnection connection)
          A helper that registers the opened connection in the application-level registry.
 

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

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

Methods in org.apache.wicket.protocol.ws.api.registry that return IWebSocketConnection
 IWebSocketConnection SimpleWebSocketConnectionRegistry.getConnection(Application application, String sessionId, IKey key)
           
 IWebSocketConnection IWebSocketConnectionRegistry.getConnection(Application application, String sessionId, IKey key)
           
 

Methods in org.apache.wicket.protocol.ws.api.registry 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.registry with parameters of type IWebSocketConnection
 void SimpleWebSocketConnectionRegistry.setConnection(Application application, String sessionId, IKey key, IWebSocketConnection connection)
           
 void IWebSocketConnectionRegistry.setConnection(Application application, String sessionId, IKey key, IWebSocketConnection connection)
          Adds a new connection into the registry at the specified coordinates (application+session+page)
 



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