Interface ActionWebSocketListener
-
- All Superinterfaces:
HiroStandardListener
public interface ActionWebSocketListener extends HiroStandardListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonActionSubmit(ActionWebSocket actionWebSocket, ActionHandlerSubmit submit)Called with the parsedActionHandlerSubmit.voidonConfigChanged(ActionWebSocket actionWebSocket)Called whenActionHandlerConfigChangedis received.-
Methods inherited from interface co.arago.hiro.client.websocket.listener.HiroStandardListener
onClose, onError, onOpen
-
-
-
-
Method Detail
-
onActionSubmit
void onActionSubmit(ActionWebSocket actionWebSocket, ActionHandlerSubmit submit) throws java.lang.Exception
Called with the parsedActionHandlerSubmit.- Parameters:
actionWebSocket- Reference to the websocket.submit- The incoming message.- Throws:
java.lang.Exception- Any exception.
-
onConfigChanged
void onConfigChanged(ActionWebSocket actionWebSocket)
Called whenActionHandlerConfigChangedis received.- Parameters:
actionWebSocket- Reference to the websocket.
-
-