org.apache.tomcat.websocket
Class WsRemoteEndpointBasic
java.lang.Object
org.apache.tomcat.websocket.WsRemoteEndpointBase
org.apache.tomcat.websocket.WsRemoteEndpointBasic
- All Implemented Interfaces:
- RemoteEndpoint, RemoteEndpoint.Basic
public class WsRemoteEndpointBasic
- extends WsRemoteEndpointBase
- implements RemoteEndpoint.Basic
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
sendText
public void sendText(String text)
throws IOException
- Description copied from interface:
javax.websocket.RemoteEndpoint.Basic
- Send the message, blocking until the message is sent.
- Specified by:
sendText
in interface RemoteEndpoint.Basic
- Parameters:
text
- The text message to send.
- Throws:
IOException
sendBinary
public void sendBinary(ByteBuffer data)
throws IOException
- Description copied from interface:
javax.websocket.RemoteEndpoint.Basic
- Send the message, blocking until the message is sent.
- Specified by:
sendBinary
in interface RemoteEndpoint.Basic
- Parameters:
data
- The binary message to send
- Throws:
IOException
sendText
public void sendText(String fragment,
boolean isLast)
throws IOException
- Description copied from interface:
javax.websocket.RemoteEndpoint.Basic
- Sends part of a text message to the remote endpoint. Once the first part
of a message has been sent, no other text or binary messages may be sent
until all remaining parts of this message have been sent.
- Specified by:
sendText
in interface RemoteEndpoint.Basic
- Parameters:
fragment
- The partial message to sendisLast
- true
if this is the last part of the
message, otherwise false
- Throws:
IOException
sendBinary
public void sendBinary(ByteBuffer partialByte,
boolean isLast)
throws IOException
- Description copied from interface:
javax.websocket.RemoteEndpoint.Basic
- Sends part of a binary message to the remote endpoint. Once the first
part of a message has been sent, no other text or binary messages may be
sent until all remaining parts of this message have been sent.
- Specified by:
sendBinary
in interface RemoteEndpoint.Basic
- Parameters:
partialByte
- The partial message to sendisLast
- true
if this is the last part of the
message, otherwise false
- Throws:
IOException
getSendStream
public OutputStream getSendStream()
throws IOException
- Specified by:
getSendStream
in interface RemoteEndpoint.Basic
- Throws:
IOException
getSendWriter
public Writer getSendWriter()
throws IOException
- Specified by:
getSendWriter
in interface RemoteEndpoint.Basic
- Throws:
IOException
sendObject
public void sendObject(Object o)
throws IOException,
EncodeException
- Specified by:
sendObject
in interface RemoteEndpoint.Basic
- Throws:
IOException
EncodeException
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.