Package org.apache.ofbiz.example
Class ExampleWebSockets
- java.lang.Object
-
- org.apache.ofbiz.example.ExampleWebSockets
-
public class ExampleWebSockets extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
module
-
Constructor Summary
Constructors Constructor Description ExampleWebSockets()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Set<javax.websocket.Session>
getClients()
void
onClose(javax.websocket.Session session)
void
onMessage(javax.websocket.Session session, java.lang.String msg, boolean last)
void
onOpen(javax.websocket.Session session)
-
-
-
Method Detail
-
onMessage
public void onMessage(javax.websocket.Session session, java.lang.String msg, boolean last)
-
onOpen
public void onOpen(javax.websocket.Session session)
-
onClose
public void onClose(javax.websocket.Session session)
-
getClients
public static java.util.Set<javax.websocket.Session> getClients()
-
-