Uses of Interface
javax.websocket.Encoder
Packages that use Encoder
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 Encoder in javax.websocket
Subinterfaces of Encoder in javax.websocketModifier and TypeInterfaceDescriptionstatic interface
This interface defines how to provide a way to convert a custom object into a binary message.static interface
This interface may be implemented by encoding algorithms that want to write the encoded object to a binary stream.static interface
Encoder.Text<T>
This interface defines how to provide a way to convert a custom object into a text message.static interface
This interface may be implemented by encoding algorithms that want to write the encoded object to a character stream.Fields in javax.websocket with type parameters of type EncoderModifier and TypeFieldDescriptionClientEndpointConfig.Builder.encoders
DefaultClientEndpointConfig.encoders
Methods in javax.websocket that return types with arguments of type EncoderModifier and TypeMethodDescriptionDefaultClientEndpointConfig.getEncoders()
Return the (unmodifiable) list of encoders this client will use.EndpointConfig.getEncoders()
Return the Encoder implementation classes configured.Method parameters in javax.websocket with type arguments of type EncoderModifier and TypeMethodDescriptionAssign the list of encoder implementation classes the client will use. -
Uses of Encoder in javax.websocket.server
Fields in javax.websocket.server with type parameters of type EncoderModifier and TypeFieldDescriptionDefaultServerEndpointConfig.encoders
ServerEndpointConfig.Builder.encoders
Methods in javax.websocket.server that return types with arguments of type EncoderModifier and TypeMethodDescriptionDefaultServerEndpointConfig.getEncoders()
Return the Encoder implementation classes configured.Method parameters in javax.websocket.server with type arguments of type EncoderModifier and TypeMethodDescriptionSets the list of encoder implementation classes for this builder.