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