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

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

Introduction

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

Usage

From source file org.springframework.web.socket.handler.LoggingWebSocketHandlerDecorator.java

/**
 * A {@link WebSocketHandlerDecorator} that adds logging to WebSocket lifecycle events.
 *
 * @author Rossen Stoyanchev
 * @since 4.0
 */

From source file org.springframework.web.socket.handler.ExceptionWebSocketHandlerDecorator.java

/**
 * An exception handling {@link WebSocketHandlerDecorator}.
 * Traps all {@link Throwable} instances that escape from the decorated
 * handler and closes the session with {@link CloseStatus#SERVER_ERROR}.
 *
 * @author Rossen Stoyanchev