Uses of Interface
javax.websocket.Decoder

Packages that use Decoder
javax.websocket   
javax.websocket.server   
 

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> DefaultClientConfiguration.getDecoders()
          Return the (unmodifiable) list of decoders this client will use.
 

Method parameters in javax.websocket with type arguments of type Decoder
 DefaultClientConfiguration DefaultClientConfiguration.setDecoders(List<Decoder> decoders)
          Assign the list of decoders this client will use.
 

Uses of Decoder in javax.websocket.server
 

Methods in javax.websocket.server that return types with arguments of type Decoder
 List<Decoder> DefaultServerConfiguration.getDecoders()
          Return the Decoder implementations configured.
 

Method parameters in javax.websocket.server with type arguments of type Decoder
 DefaultServerConfiguration DefaultServerConfiguration.setDecoders(List<Decoder> decoders)
          Sets all the decoders that this configuration will support.
 




Copyright © 2012-2013 Oracle and/or its affiliates. All rights reserved.