|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Decoder | |
|---|---|
| javax.websocket | |
| org.glassfish.tyrus | |
| Uses of Decoder in javax.websocket |
|---|
| Subinterfaces of Decoder in javax.websocket | |
|---|---|
static interface |
Decoder.Binary<T>
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 |
Decoder.BinaryStream<T>
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 |
Decoder.TextStream<T>
This interface defines how a custom object of type T is decoded from a web socket message in the form of a character stream. |
| Methods in javax.websocket that return types with arguments of type Decoder | |
|---|---|
List<Decoder> |
EndpointConfiguration.getDecoders()
Return the Decoder implementations configured, the empty list if none. |
List<Decoder> |
DefaultServerConfiguration.getDecoders()
Return the Decoder implementations configured. |
List<Decoder> |
DefaultClientConfiguration.getDecoders()
Assign the list of decoders this client will use. |
| Method parameters in javax.websocket with type arguments of type Decoder | |
|---|---|
DefaultServerConfiguration |
DefaultServerConfiguration.setDecoders(List<Decoder> decoders)
Sets all the decoders that this configuration will support. |
ClientEndpointConfiguration |
DefaultClientConfiguration.setDecoders(List<Decoder> decoders)
Assign the list of decoders this client will use. |
| Uses of Decoder in org.glassfish.tyrus |
|---|
| Classes in org.glassfish.tyrus that implement Decoder | |
|---|---|
class |
DecoderWrapper
Used to store class and it's type. |
class |
NoOpBinaryCoder
|
class |
NoOpTextCoder
|
class |
PrimitiveDecoders<T>
Collection of decoders for all primitive types. |
| Fields in org.glassfish.tyrus with type parameters of type Decoder | |
|---|---|
protected List<Decoder> |
DefaultEndpointConfiguration.Builder.decoders
|
| Methods in org.glassfish.tyrus that return Decoder | |
|---|---|
Decoder |
DecoderWrapper.getDecoder()
|
| Methods in org.glassfish.tyrus that return types with arguments of type Decoder | |
|---|---|
List<Decoder> |
DefaultEndpointConfiguration.getDecoders()
Decoders used to decode messages. |
| Method parameters in org.glassfish.tyrus with type arguments of type Decoder | |
|---|---|
T |
DefaultEndpointConfiguration.Builder.decoders(List<Decoder> decoders)
Set decoders. |
| Constructors in org.glassfish.tyrus with parameters of type Decoder | |
|---|---|
DecoderWrapper(Decoder instance,
Class<?> type,
Class<?> originalClass)
|
|
| Constructor parameters in org.glassfish.tyrus with type arguments of type Decoder | |
|---|---|
DefaultEndpointConfiguration(List<Encoder> encoders,
List<Decoder> decoders,
List<String> subprotocols,
List<String> extensions)
|
|
DefaultServerEndpointConfiguration(String uri,
List<Encoder> encoders,
List<Decoder> decoders,
List<String> subprotocols,
List<String> extensions,
List<String> origins)
Creates new configuration for Endpoint which is used on the server side. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||