Example usage for org.springframework.web.socket WebSocketSession interface-usage

List of usage examples for org.springframework.web.socket WebSocketSession interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.socket WebSocketSession interface-usage.

Usage

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

/**
 * An abstract base class for implementations of {@link WebSocketSession}.
 *
 * @param T the type of the native (or delegate) WebSocket session
 *
 * @author Rossen Stoyanchev

From source file org.springframework.web.socket.sockjs.client.AbstractClientSockJsSession.java

/**
 * Base class for SockJS client implementations of {@link WebSocketSession}.
 * Provides processing of incoming SockJS message frames and delegates lifecycle
 * events and messages to the (application) {@link WebSocketHandler}.
 * Sub-classes implement actual send as well as disconnect logic.
 *