Uses of Class
javax.net.websocket.SendResult

Packages that use SendResult
javax.net.websocket   
org.glassfish.tyrus   
org.glassfish.tyrus.grizzly   
 

Uses of SendResult in javax.net.websocket
 

Methods in javax.net.websocket that return types with arguments of type SendResult
 Future<SendResult> RemoteEndpoint.sendBytes(ByteBuffer data, SendHandler completion)
          Initiates the asynchronous transmission of a binary message.
 Future<SendResult> RemoteEndpoint.sendObject(T o, SendHandler handler)
          Initiates the transmission of a custom developer object.
 Future<SendResult> RemoteEndpoint.sendString(String text, SendHandler completion)
          Initiates the asynchronous transmission of a text message.
 

Methods in javax.net.websocket with parameters of type SendResult
 void SendHandler.setResult(SendResult result)
          Called once the message has been transmitted.
 

Uses of SendResult in org.glassfish.tyrus
 

Methods in org.glassfish.tyrus that return SendResult
 SendResult FutureSendResult.get()
           
 SendResult FutureSendResult.get(long timeout, TimeUnit unit)
           
 

Methods in org.glassfish.tyrus that return types with arguments of type SendResult
 Future<SendResult> SendCompletionAdapter.send(Object msg, SendHandler completion)
           
 Future<SendResult> RemoteEndpointWrapper.sendBytes(ByteBuffer data, SendHandler completion)
           
 Future<SendResult> RemoteEndpointWrapper.sendObject(T o, SendHandler completion)
           
 Future<SendResult> RemoteEndpointWrapper.sendString(String text, SendHandler completion)
           
 

Uses of SendResult in org.glassfish.tyrus.grizzly
 

Methods in org.glassfish.tyrus.grizzly that return types with arguments of type SendResult
 Future<SendResult> GrizzlyRemoteEndpoint.sendBytes(ByteBuffer byteBuffer, SendHandler sendHandler)
           
 Future<SendResult> GrizzlyRemoteEndpoint.sendObject(Object o, SendHandler handler)
           
 Future<SendResult> GrizzlyRemoteEndpoint.sendString(String text, SendHandler completion)
           
 



Copyright © 2012. All Rights Reserved.