Uses of Interface
org.springframework.web.reactive.socket.WebSocketSession
Packages that use WebSocketSession Package Description org.springframework.web.reactive.socket Abstractions and support classes for reactive WebSocket interactions.org.springframework.web.reactive.socket.adapter Classes adapting Spring's Reactive WebSocket API to and from WebSocket runtimes.Uses of WebSocketSession in org.springframework.web.reactive.socket
Methods in org.springframework.web.reactive.socket with parameters of type WebSocketSession Modifier and Type Method Description reactor.core.publisher.Mono<Void>WebSocketHandler. handle(WebSocketSession session)Invoked when a new WebSocket connection is established, and allows handling of the session.Uses of WebSocketSession in org.springframework.web.reactive.socket.adapter
Classes in org.springframework.web.reactive.socket.adapter that implement WebSocketSession Modifier and Type Class Description classAbstractListenerWebSocketSession<T>Base class forWebSocketSessionimplementations that bridge between event-listener WebSocket APIs (e.g.classAbstractWebSocketSession<T>Convenient base class forWebSocketSessionimplementations that holds common fields and exposes accessors.classJettyWebSocketSessionSpringWebSocketSessionimplementation that adapts to a Jetty WebSocketSession.classNettyWebSocketSessionSupport<T>Base class for Netty-basedWebSocketSessionadapters that provides convenience methods to convert NettyWebSocketFramesto and fromWebSocketMessages.classReactorNettyWebSocketSessionclassStandardWebSocketSessionSpringWebSocketSessionadapter for a standard Java (JSR 356)Session.classTomcatWebSocketSessionSpringWebSocketSessionadapter for Tomcat'sSession.classUndertowWebSocketSessionSpringWebSocketSessionimplementation that adapts to an UndertowWebSocketChannel.