|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Encoder | |
|---|---|
| javax.websocket | |
| javax.websocket.server | |
| Uses of Encoder in javax.websocket |
|---|
| Subinterfaces of Encoder in javax.websocket | |
|---|---|
static interface |
Encoder.Binary<T>
This interface defines how to provide a way to convert a custom object into a binary message. |
static interface |
Encoder.BinaryStream<T>
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 |
Encoder.TextStream<T>
This interface may be implemented by encoding algorithms that want to write the encoded object to a character stream. |
| Methods in javax.websocket that return types with arguments of type Encoder | |
|---|---|
List<Encoder> |
EndpointConfiguration.getEncoders()
Return the Encoder implementations configured, the empty list if none. |
List<Encoder> |
DefaultClientConfiguration.getEncoders()
Return the (unmodifiable) list of encoders this client will use. |
| Method parameters in javax.websocket with type arguments of type Encoder | |
|---|---|
DefaultClientConfiguration |
DefaultClientConfiguration.setEncoders(List<Encoder> encoders)
Assign the list of encoders this client will use. |
| Uses of Encoder in javax.websocket.server |
|---|
| Methods in javax.websocket.server that return types with arguments of type Encoder | |
|---|---|
List<Encoder> |
DefaultServerConfiguration.getEncoders()
Return the Encoder implementations configured. |
| Method parameters in javax.websocket.server with type arguments of type Encoder | |
|---|---|
DefaultServerConfiguration |
DefaultServerConfiguration.setEncoders(List<Encoder> encoders)
Sets all the encoders that this configuration will support. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||