Uses of Interface
javax.websocket.Decoder
Packages that use Decoder
Package
Description
This package contains all the WebSocket APIs common to both the client
and server side.
This package contains all the WebSocket APIs used only by server side
applications.
-
Uses of Decoder in javax.websocket
Subinterfaces of Decoder in javax.websocketModifier and TypeInterfaceDescriptionstatic interface
This interface defines how a custom object (of type T) is decoded from a web socket message in the form of a byte buffer.static interface
This interface defines how a custom object is decoded from a web socket message in the form of a binary stream.static interface
Decoder.Text<T>
This interface defines how a custom object is decoded from a web socket message in the form of a string.static interface
This interface defines how a custom object of type T is decoded from a web socket message in the form of a character stream.Fields in javax.websocket with type parameters of type DecoderModifier and TypeFieldDescriptionClientEndpointConfig.Builder.decoders
DefaultClientEndpointConfig.decoders
Methods in javax.websocket that return types with arguments of type DecoderModifier and TypeMethodDescriptionDefaultClientEndpointConfig.getDecoders()
Return the (unmodifiable) list of decoders this client will use.EndpointConfig.getDecoders()
Return the Decoder implementation classes configured.Method parameters in javax.websocket with type arguments of type DecoderModifier and TypeMethodDescriptionAssign the list of decoder implementation classes the client will use. -
Uses of Decoder in javax.websocket.server
Fields in javax.websocket.server with type parameters of type DecoderModifier and TypeFieldDescriptionDefaultServerEndpointConfig.decoders
ServerEndpointConfig.Builder.decoders
Methods in javax.websocket.server that return types with arguments of type DecoderModifier and TypeMethodDescriptionDefaultServerEndpointConfig.getDecoders()
Return the Decoder implementation classes configured.Method parameters in javax.websocket.server with type arguments of type DecoderModifier and TypeMethodDescriptionSets the decoder implementation classes to use in the configuration.