Uses of Interface
javax.websocket.SendHandler
-
Packages that use SendHandler Package Description javax.websocket This package contains all the WebSocket APIs common to both the client and server side. -
-
Uses of SendHandler in javax.websocket
Methods in javax.websocket with parameters of type SendHandler Modifier and Type Method Description voidRemoteEndpoint.Async. sendBinary(java.nio.ByteBuffer data, SendHandler handler)Initiates the asynchronous transmission of a binary message.voidRemoteEndpoint.Async. sendObject(java.lang.Object data, SendHandler handler)Initiates the asynchronous transmission of a custom developer object.voidRemoteEndpoint.Async. sendText(java.lang.String text, SendHandler handler)Initiates the asynchronous transmission of a text message.
-