Example usage for org.springframework.web.socket.handler TextWebSocketHandler subclass-usage

List of usage examples for org.springframework.web.socket.handler TextWebSocketHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.socket.handler TextWebSocketHandler subclass-usage.

Usage

From source file org.kurento.tutorial.crowddetector.CrowdDetectorHandler.java

/**
 * Magic Mirror handler (application and media logic).
 * 
 * @author Boni Garcia (bgarcia@gsyc.es)
 * @author David Fernandez (d.fernandezlop@gmail.com)
 * @since 5.0.0

From source file dk.apaq.orderly.CallHandler.java

/**
 * Protocol handler for 1 to N video call communication.
 *
 * @author Boni Garcia (bgarcia@gsyc.es)
 * @since 5.0.0
 */

From source file org.kurento.tutorial.player.PlayerFrameSaverHandler.java

/**
 * Protocol handler for video player through WebRTC.
 *
 * @author Boni Garcia (bgarcia@gsyc.es)
 * @author David Fernandez (dfernandezlop@gmail.com)
 * @author Ivan Gracia (igracia@kurento.org)

From source file com.navercorp.pinpoint.web.websocket.ActiveThreadCountHandler.java

import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.TextMessage;
import org.springframework.web.socket.WebSocketSession;
import org.springframework.web.socket.handler.TextWebSocketHandler;

From source file org.kurento.tutorial.helloworld.HelloWorldRecHandler.java

/**
 * Recording in repository handler (application and media logic).
 *
 * @author Boni Garcia (bgarcia@gsyc.es)
 * @author David Fernandez (d.fernandezlop@gmail.com)
 * @author Radu Tom Vlad (rvlad@naevatec.com)

From source file org.kurento.tutorial.one2onecalladv.CallHandler.java

/**
 * Protocol handler for 1 to 1 video call communication.
 *
 * @author Boni Garcia (bgarcia@gsyc.es)
 * @author Micael Gallego (micael.gallego@gmail.com)
 * @since 5.0.0

From source file ca.uhn.fhir.jpa.subscription.SubscriptionWebsocketHandler.java

public class SubscriptionWebsocketHandler extends TextWebSocketHandler
        implements ISubscriptionWebsocketHandler, Runnable {
    private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory
            .getLogger(SubscriptionWebsocketHandler.class);

    @Autowired

From source file ca.uhn.fhir.jpa.subscription.SubscriptionWebsocketHandlerDstu3.java

public class SubscriptionWebsocketHandlerDstu3 extends TextWebSocketHandler
        implements ISubscriptionWebsocketHandler, Runnable {
    private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory
            .getLogger(SubscriptionWebsocketHandlerDstu3.class);

    @Autowired

From source file ca.uhn.fhir.jpa.subscription.SubscriptionWebsocketHandlerDstu2.java

public class SubscriptionWebsocketHandlerDstu2 extends TextWebSocketHandler
        implements ISubscriptionWebsocketHandler, Runnable {
    private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory
            .getLogger(SubscriptionWebsocketHandlerDstu2.class);

    @Autowired

From source file org.kurento.tutorial.frame_saver.FrameSaverHandler.java

/**
 * FrameSaverHandler (application and media logic).
 *
 * @author J. Bendor for Telmate Inc. --- based on "kurento-plate-detector"
 */
public class FrameSaverHandler extends TextWebSocketHandler {