public static interface RemoteEndpoint.Basic extends RemoteEndpoint
RemoteEndpoint.Async, RemoteEndpoint.Basic
Modifier and Type | Method and Description |
---|---|
java.io.OutputStream |
getSendStream() |
java.io.Writer |
getSendWriter() |
void |
sendBinary(java.nio.ByteBuffer data)
Send the message, blocking until the message is sent.
|
void |
sendBinary(java.nio.ByteBuffer partialByte,
boolean isLast)
Sends part of a binary message to the remote endpoint.
|
void |
sendObject(java.lang.Object o) |
void |
sendText(java.lang.String text)
Send the message, blocking until the message is sent.
|
void |
sendText(java.lang.String fragment,
boolean isLast)
Sends part of a text message to the remote endpoint.
|
flushBatch, getBatchingAllowed, sendPing, sendPong, setBatchingAllowed
void sendText(java.lang.String text) throws java.io.IOException
text
- The text message to send.java.io.IOException
void sendBinary(java.nio.ByteBuffer data) throws java.io.IOException
data
- The binary message to sendjava.io.IOException
void sendText(java.lang.String fragment, boolean isLast) throws java.io.IOException
fragment
- The partial message to sendisLast
- true
if this is the last part of the
message, otherwise false
java.io.IOException
void sendBinary(java.nio.ByteBuffer partialByte, boolean isLast) throws java.io.IOException
partialByte
- The partial message to sendisLast
- true
if this is the last part of the
message, otherwise false
java.io.IOException
java.io.OutputStream getSendStream() throws java.io.IOException
java.io.IOException
java.io.Writer getSendWriter() throws java.io.IOException
java.io.IOException
void sendObject(java.lang.Object o) throws java.io.IOException, EncodeException
java.io.IOException
EncodeException
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.