javax.net.websocket
Interface EndpointConfiguration

All Known Subinterfaces:
ClientConfiguration, ServerConfiguration
All Known Implementing Classes:
DefaultClientConfiguration, DefaultServerConfiguration

public interface EndpointConfiguration

The endpoint configuration contains all the information needed during the handshake process for this end point. All endpoints specify, for example, a URI. In the case of a server endpoint, the URI signifies the URI to which the endpoint will be mapped. In the case of a client application the URI signifies the URI of the server to which the client endpoint will attempt to connect.

Since:
DRAFT 001
Author:
dannycoward

Method Summary
 List<Decoder> getDecoders()
          Return the Decoder implementations configured.
 List<Encoder> getEncoders()
          Return the Encoder implementations configured.
 

Method Detail

getEncoders

List<Encoder> getEncoders()
Return the Encoder implementations configured. These will be used by the container to encode custom objects passed into the send() methods on remote endpoints


getDecoders

List<Decoder> getDecoders()
Return the Decoder implementations configured. These will be used by the container to decode incoming messages into the expected custom objects on MessageListener.onMessage() callbacks.



Copyright © 2012. All Rights Reserved.