List of usage examples for javax.websocket MessageHandler.Whole interface-usage
From source file de.hofuniversity.iisys.neo4j.websock.query.encoding.StringTransferUtil.java
/** * Utility receiving text data and forwarding it to a message handler and * encoding and sending messages using the configured format. */ public class StringTransferUtil implements MessageHandler.Whole<String>, Cloneable { private final Basic fRemote;
From source file pt.webdetails.cda.push.CdaPushQueryMessageHandler.java
/** * This is the class that handles messages with queries to execute and then sends the results back to the * clients of the websocket server endpoint. */ public class CdaPushQueryMessageHandler implements MessageHandler.Whole<String> {
From source file de.hofuniversity.iisys.neo4j.websock.query.encoding.logging.LoggingStringTransferUtil.java
/** * Utility receiving text data and forwarding it to a message handler and * encoding and sending messages using the configured format. */ public class LoggingStringTransferUtil implements MessageHandler.Whole<String>, Cloneable { public static final Map<String, List<Integer>> LOGGED_IN_SIZES = new HashMap<String, List<Integer>>();
From source file org.axonframework.commandhandling.distributed.websockets.WebsocketCommandBusConnectorClient.java
/**
* The client to connect to the Websocket server. It is capable of scaling up the amount of clients in a pool if a
* single connection is not sufficient for the load applied.
*
* @author Koen Lavooij
*/