Uses of Interface
javax.net.websocket.Encoder

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

Uses of Encoder in javax.net.websocket
 

Subinterfaces of Encoder in javax.net.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.net.websocket that return types with arguments of type Encoder
 List<Encoder> EndpointConfiguration.getEncoders()
          Return the Encoder implementations configured.
 List<Encoder> DefaultServerConfiguration.getEncoders()
          Return the Decoder implementations configured.
 List<Encoder> DefaultClientConfiguration.getEncoders()
          Assign the list of encoders this client will use.
 

Method parameters in javax.net.websocket with type arguments of type Encoder
 void Session.setEncoders(List<Encoder> encoders)
          Sets the list of encoders to be used in this session in order of preference.
 DefaultServerConfiguration DefaultServerConfiguration.setEncoders(List<Encoder> encoders)
           
 ClientEndpointConfiguration DefaultClientConfiguration.setEncoders(List<Encoder> encoders)
          Assign the list of encoders this client will use.
 

Uses of Encoder in org.glassfish.tyrus
 

Classes in org.glassfish.tyrus that implement Encoder
 class NoOpBinaryCoder
           
 class NoOpTextCoder
           
 class ToStringEncoder
          Fall-back encoder - encoders any object to string using Object.toString() method.
 

Fields in org.glassfish.tyrus with type parameters of type Encoder
protected  List<Encoder> DefaultEndpointConfiguration.Builder.encoders
           
 

Methods in org.glassfish.tyrus that return types with arguments of type Encoder
 List<Encoder> DefaultEndpointConfiguration.getEncoders()
          Encoders used to encode messages.
 

Method parameters in org.glassfish.tyrus with type arguments of type Encoder
 T DefaultEndpointConfiguration.Builder.encoders(List<Encoder> encoders)
          Set encoders.
 void SessionImpl.setEncoders(List<Encoder> encoders)
           
 

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

Uses of Encoder in org.glassfish.tyrus.server
 

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