Interface WebSocketMessageListener
-
- All Known Subinterfaces:
WebSocketUrlHandler
- All Known Implementing Classes:
RecordingPlaybackUrlHandlerImpl,WebSocketUrlHandlerImpl
public interface WebSocketMessageListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UrlHandlergetOwner()booleanisReady()voidonDisconnect(WebSocketConnection connection)voidonMessage(WebSocketConnection connection, Object message)voidonReady(WebSocketConnection c)voidonTimeout(WebSocketConnection connection)
-
-
-
Method Detail
-
onReady
void onReady(WebSocketConnection c)
-
onMessage
void onMessage(WebSocketConnection connection, Object message)
-
onDisconnect
void onDisconnect(WebSocketConnection connection)
-
onTimeout
void onTimeout(WebSocketConnection connection)
-
getOwner
UrlHandler getOwner()
-
isReady
boolean isReady()
-
-