Uses of Enum Class
org.springframework.web.reactive.socket.WebSocketMessage.Type
Packages that use WebSocketMessage.Type
Package
Description
Abstractions and support classes for reactive WebSocket interactions.
-
Uses of WebSocketMessage.Type in org.springframework.web.reactive.socket
Methods in org.springframework.web.reactive.socket that return WebSocketMessage.TypeModifier and TypeMethodDescriptionWebSocketMessage.getType()Return the message type (text, binary, etc).static WebSocketMessage.TypeReturns the enum constant of this class with the specified name.static WebSocketMessage.Type[]WebSocketMessage.Type.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.springframework.web.reactive.socket with parameters of type WebSocketMessage.TypeModifierConstructorDescriptionWebSocketMessage(WebSocketMessage.Type type, DataBuffer payload) Constructor for a WebSocketMessage.WebSocketMessage(WebSocketMessage.Type type, DataBuffer payload, Object nativeMessage) Constructor for an inbound message with access to the underlying message.