Uses of Interface
javax.net.websocket.Decoder

Packages that use Decoder
javax.net.websocket   
org.glassfish.tyrus   
org.glassfish.tyrus.server   
 

Uses of Decoder in javax.net.websocket
 

Subinterfaces of Decoder in javax.net.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.net.websocket that return types with arguments of type Decoder
 List<Decoder> EndpointConfiguration.getDecoders()
          Return the Decoder implementations configured.
 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.net.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 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 decoder, Class<?> type, Class<?> rootType)
           
 

Constructor parameters in org.glassfish.tyrus with type arguments of type Decoder
DefaultEndpointConfiguration(String uri, List<Encoder> encoders, List<Decoder> decoders, List<String> subprotocols, List<String> extensions)
           
 

Uses of Decoder in org.glassfish.tyrus.server
 

Constructor parameters in org.glassfish.tyrus.server with type arguments of type Decoder
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.
 



Copyright © 2012. All Rights Reserved.