Example usage for org.springframework.web.socket.client WebSocketClient interface-usage

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

Introduction

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

Usage

From source file org.springframework.web.socket.client.AbstractWebSocketClient.java

/**
 * Abstract base class for {@link WebSocketClient} implementations.
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */

From source file org.springframework.web.socket.client.jetty.JettyWebSocketClient.java

/**
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class JettyWebSocketClient implements WebSocketClient, SmartLifecycle {

From source file org.springframework.web.socket.client.endpoint.StandardWebSocketClient.java

/**
 * Initiates WebSocket requests to a WebSocket server programatically through the standard
 * Java WebSocket API .
 *
 * @author Rossen Stoyanchev
 * @since 4.0

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

/**
 * A SockJS implementation of
 * {@link org.springframework.web.socket.client.WebSocketClient WebSocketClient}
 * with fallback alternatives that simulate a WebSocket interaction through plain
 * HTTP streaming and long polling techniques..
 *