Uses of Interface
javax.websocket.RemoteEndpoint

Packages that use RemoteEndpoint
javax.websocket   
org.glassfish.tyrus   
org.glassfish.tyrus.grizzly   
org.glassfish.tyrus.spi   
 

Uses of RemoteEndpoint in javax.websocket
 

Methods in javax.websocket that return RemoteEndpoint
 RemoteEndpoint Session.getRemote()
          Return a reference to the RemoteEndpoint object representing the other end of this conversation.
 

Uses of RemoteEndpoint in org.glassfish.tyrus
 

Classes in org.glassfish.tyrus that implement RemoteEndpoint
 class RemoteEndpointWrapper
          Wrapps the RemoteEndpoint and represents the other side of the websocket connection.
 

Methods in org.glassfish.tyrus that return RemoteEndpoint
 RemoteEndpoint SessionImpl.getRemote()
           
 

Methods in org.glassfish.tyrus with parameters of type RemoteEndpoint
 void EndpointWrapper.onClose(RemoteEndpoint gs)
           
 void EndpointWrapper.onConnect(RemoteEndpoint gs, String subprotocol, List<String> extensions)
           
 void EndpointWrapper.onMessage(RemoteEndpoint gs, ByteBuffer messageBytes)
           
 void EndpointWrapper.onMessage(RemoteEndpoint gs, String messageString)
           
 void EndpointWrapper.onPartialMessage(RemoteEndpoint gs, ByteBuffer partialBytes, boolean last)
           
 void EndpointWrapper.onPartialMessage(RemoteEndpoint gs, String partialString, boolean last)
           
 void EndpointWrapper.onPing(RemoteEndpoint gs, ByteBuffer bytes)
           
 void EndpointWrapper.onPong(RemoteEndpoint gs, ByteBuffer bytes)
           
 

Constructors in org.glassfish.tyrus with parameters of type RemoteEndpoint
OutputStreamToAsyncBinaryAdapter(RemoteEndpoint re)
           
WriterToAsyncTextAdapter(RemoteEndpoint re)
           
 

Uses of RemoteEndpoint in org.glassfish.tyrus.grizzly
 

Classes in org.glassfish.tyrus.grizzly that implement RemoteEndpoint
 class GrizzlyRemoteEndpoint
           
 

Uses of RemoteEndpoint in org.glassfish.tyrus.spi
 

Methods in org.glassfish.tyrus.spi with parameters of type RemoteEndpoint
abstract  void SPIEndpoint.onClose(RemoteEndpoint gs)
          Called by the provider when the web socket connection to the given remote endpoint has just closed.
abstract  void SPIEndpoint.onConnect(RemoteEndpoint gs, String subprotocol, List<String> extensions)
          Called by the provider when the web socket connection is established.
abstract  void SPIEndpoint.onMessage(RemoteEndpoint gs, ByteBuffer bytes)
          Called by the provider when the web socket connection has an incoming binary message from the given remote endpoint.
abstract  void SPIEndpoint.onMessage(RemoteEndpoint gs, String messageString)
          Called by the provider when the web socket connection has an incoming text message from the given remote endpoint.
abstract  void SPIEndpoint.onPartialMessage(RemoteEndpoint gs, ByteBuffer partialBytes, boolean last)
          Called by the provider when the web socket connection has an incoming partial binary message from the given remote endpoint.
abstract  void SPIEndpoint.onPartialMessage(RemoteEndpoint gs, String partialString, boolean last)
          Called by the provider when the web socket connection has an incoming partial text message from the given remote endpoint.
abstract  void SPIEndpoint.onPing(RemoteEndpoint gs, ByteBuffer bytes)
          Called by the provider when the web socket connection has an incoming ping message from the given remote endpoint.
abstract  void SPIEndpoint.onPong(RemoteEndpoint gs, ByteBuffer bytes)
          Called by the provider when the web socket connection has an incoming pong message from the given remote endpoint.
 



Copyright © 2012. All Rights Reserved.