Class JavaxWebSocketProcessor
- java.lang.Object
-
- org.apache.wicket.protocol.ws.api.AbstractWebSocketProcessor
-
- org.apache.wicket.protocol.ws.javax.JavaxWebSocketProcessor
-
- All Implemented Interfaces:
IWebSocketProcessor
public class JavaxWebSocketProcessor extends AbstractWebSocketProcessor
Anprocessor
that integrates with JSR 356web socket
implementation.- Since:
- 7.0.0
-
-
Constructor Summary
Constructors Constructor Description JavaxWebSocketProcessor(javax.websocket.Session session, WebApplication application, javax.websocket.EndpointConfig endpointConfig)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onOpen(Object containerConnection)
A client successfully has made a web socket connection.-
Methods inherited from class org.apache.wicket.protocol.ws.api.AbstractWebSocketProcessor
broadcastMessage, broadcastMessage, getApplication, getRegistryKey, getSessionId, onClose, onConnect, onError, onMessage, onMessage
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.wicket.protocol.ws.api.IWebSocketProcessor
onOpen
-
-
-
-
Constructor Detail
-
JavaxWebSocketProcessor
public JavaxWebSocketProcessor(javax.websocket.Session session, WebApplication application, javax.websocket.EndpointConfig endpointConfig)
Constructor.- Parameters:
session
- the WebSocket sessionapplication
- theWebApplication
endpointConfig
- theEndpointConfig
-
-
Method Detail
-
onOpen
public void onOpen(Object containerConnection)
Description copied from interface:IWebSocketProcessor
A client successfully has made a web socket connection.- Parameters:
containerConnection
- the web socket connection to use to communicate with the client
-
-