public abstract class WsRemoteEndpointBase extends Object implements RemoteEndpoint
RemoteEndpoint.Async, RemoteEndpoint.Basic
Modifier and Type | Field and Description |
---|---|
protected WsRemoteEndpointImplBase |
base |
Modifier and Type | Method and Description |
---|---|
void |
flushBatch()
Flush any currently batched messages to the remote endpoint.
|
boolean |
getBatchingAllowed()
Obtains the current batching status of the endpoint.
|
void |
sendPing(ByteBuffer applicationData)
Send a ping message blocking until the message has been sent.
|
void |
sendPong(ByteBuffer applicationData)
Send a pong message blocking until the message has been sent.
|
void |
setBatchingAllowed(boolean batchingAllowed)
Enable or disable the batching of outgoing messages for this endpoint.
|
protected final WsRemoteEndpointImplBase base
public final void setBatchingAllowed(boolean batchingAllowed) throws IOException
RemoteEndpoint
setBatchingAllowed
in interface RemoteEndpoint
batchingAllowed
- New settingIOException
- If changing the value resulted in a call to
RemoteEndpoint.flushBatch()
and that call threw an
IOException
.public final boolean getBatchingAllowed()
RemoteEndpoint
getBatchingAllowed
in interface RemoteEndpoint
true
if batching is enabled, otherwise
false
.public final void flushBatch() throws IOException
RemoteEndpoint
flushBatch
in interface RemoteEndpoint
IOException
- If an I/O error occurs while flushingpublic final void sendPing(ByteBuffer applicationData) throws IOException, IllegalArgumentException
RemoteEndpoint
sendPing
in interface RemoteEndpoint
applicationData
- The payload for the ping messageIOException
- If an I/O error occurs while sending the pingIllegalArgumentException
- if the applicationData is too large for
a control message (max 125 bytes)public final void sendPong(ByteBuffer applicationData) throws IOException, IllegalArgumentException
RemoteEndpoint
sendPong
in interface RemoteEndpoint
applicationData
- The payload for the pong messageIOException
- If an I/O error occurs while sending the pongIllegalArgumentException
- if the applicationData is too large for
a control message (max 125 bytes)Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.