Uses of Class
org.apache.wicket.protocol.ws.api.WebSocketRequestHandler
-
Packages that use WebSocketRequestHandler Package Description org.apache.wicket.protocol.ws org.apache.wicket.protocol.ws.api org.apache.wicket.protocol.ws.api.event -
-
Uses of WebSocketRequestHandler in org.apache.wicket.protocol.ws
Methods in org.apache.wicket.protocol.ws that return WebSocketRequestHandler Modifier and Type Method Description WebSocketRequestHandlerWebSocketSettings. newWebSocketRequestHandler(org.apache.wicket.Page page, IWebSocketConnection connection)A factory method for creating instances ofWebSocketRequestHandlerfor processing a web socket request -
Uses of WebSocketRequestHandler in org.apache.wicket.protocol.ws.api
Methods in org.apache.wicket.protocol.ws.api with parameters of type WebSocketRequestHandler Modifier and Type Method Description protected voidWebSocketBehavior. onError(WebSocketRequestHandler handler, ErrorMessage message)A callback method called when there is a communication errorprotected voidWebSocketResource. onError(WebSocketRequestHandler handler, ErrorMessage message)A callback method called when there is a communication errorprotected voidWebSocketBehavior. onMessage(WebSocketRequestHandler handler, BinaryMessage binaryMessage)A callback method called when there is a binary message sent by the clientprotected voidWebSocketBehavior. onMessage(WebSocketRequestHandler handler, TextMessage message)A callback method called when there is a text message sent by the clientprotected voidWebSocketResource. onMessage(WebSocketRequestHandler handler, BinaryMessage binaryMessage)A callback method called when there is a binary message sent by the clientprotected voidWebSocketResource. onMessage(WebSocketRequestHandler handler, TextMessage message)A callback method called when there is a text message sent by the clientprotected voidWebSocketBehavior. onPush(WebSocketRequestHandler handler, IWebSocketPushMessage message)A callback method called when there is a message pushed/broadcasted by the server, e.g.protected voidWebSocketResource. onPush(WebSocketRequestHandler handler, IWebSocketPushMessage message)A callback method called when there is a message pushed/broadcasted by the server, e.g. -
Uses of WebSocketRequestHandler in org.apache.wicket.protocol.ws.api.event
Methods in org.apache.wicket.protocol.ws.api.event that return WebSocketRequestHandler Modifier and Type Method Description WebSocketRequestHandlerWebSocketPayload. getHandler()Constructors in org.apache.wicket.protocol.ws.api.event with parameters of type WebSocketRequestHandler Constructor Description WebSocketAbortedPayload(AbortedMessage message, WebSocketRequestHandler handler)WebSocketBinaryPayload(BinaryMessage binaryMessage, WebSocketRequestHandler handler)WebSocketClosedPayload(ClosedMessage message, WebSocketRequestHandler handler)WebSocketConnectedPayload(ConnectedMessage message, WebSocketRequestHandler handler)WebSocketErrorPayload(ErrorMessage message, WebSocketRequestHandler handler)WebSocketPayload(WebSocketRequestHandler handler)WebSocketPushPayload(IWebSocketPushMessage data, WebSocketRequestHandler handler)WebSocketTextPayload(TextMessage data, WebSocketRequestHandler handler)
-