Example usage for javax.websocket Endpoint subclass-usage

List of usage examples for javax.websocket Endpoint subclass-usage

Introduction

In this page you can find the example usage for javax.websocket Endpoint subclass-usage.

Usage

From source file org.springframework.web.socket.adapter.StandardWebSocketHandlerAdapter.java

/**
 * Adapts a {@link WebSocketHandler} to the standard WebSocket for Java API.
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */

From source file org.springframework.web.socket.adapter.standard.StandardWebSocketHandlerAdapter.java

/**
 * Adapts a {@link WebSocketHandler} to the standard WebSocket for Java API.
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */

From source file org.brutusin.rpc.websocket.WebsocketEndpoint.java

/**
 *
 * @author Ignacio del Valle Alles idelvall@brutusin.org
 */
public class WebsocketEndpoint extends Endpoint {

From source file cito.server.AbstractEndpoint.java

/**
 * 
 * @author Daniel Siviter
 * @since v1.0 [15 Jul 2016]
 */
public abstract class AbstractEndpoint extends Endpoint {

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
 */

From source file org.chtijbug.drools.platform.backend.wsclient.WebSocketClient.java

@ClientEndpoint(encoders = {
        PlatformManagementKnowledgeBean.PlatformManagementKnowledgeBeanCode.class }, decoders = {
                PlatformManagementKnowledgeBean.PlatformManagementKnowledgeBeanCode.class })
public class WebSocketClient extends Endpoint {
    private final static org.slf4j.Logger logger = LoggerFactory.getLogger(WebSocketClient.class);

From source file org.sample.client.MyClient.java

/**
 * @author Arun Gupta
 */
public class MyClient extends Endpoint {
    @Override
    public void onOpen(final Session session, EndpointConfig ec) {

From source file io.sqp.client.impl.SqpConnectionImpl.java

/**
 * @author Stefan Burnicki
 */
public class SqpConnectionImpl extends Endpoint implements SqpConnection {
    private static final int MAX_MSG_BUFFER_SIZE = 32 * 1024;

From source file com.github.mrstampy.gameboot.otp.websocket.WebSocketEndpoint.java

/**
 * The Class WebSocketEndpoint.
 */
public class WebSocketEndpoint extends Endpoint {
    private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());