org.eclipse.jetty.websocket
Interface WebSocket.Outbound

All Known Implementing Classes:
WebSocketConnection
Enclosing interface:
WebSocket

public static interface WebSocket.Outbound


Method Summary
 void disconnect()
           
 boolean isOpen()
           
 void sendMessage(byte frame, byte[] data)
           
 void sendMessage(byte frame, byte[] data, int offset, int length)
           
 void sendMessage(byte frame, java.lang.String data)
           
 void sendMessage(java.lang.String data)
           
 

Method Detail

sendMessage

void sendMessage(java.lang.String data)
                 throws java.io.IOException
Throws:
java.io.IOException

sendMessage

void sendMessage(byte frame,
                 java.lang.String data)
                 throws java.io.IOException
Throws:
java.io.IOException

sendMessage

void sendMessage(byte frame,
                 byte[] data)
                 throws java.io.IOException
Throws:
java.io.IOException

sendMessage

void sendMessage(byte frame,
                 byte[] data,
                 int offset,
                 int length)
                 throws java.io.IOException
Throws:
java.io.IOException

disconnect

void disconnect()

isOpen

boolean isOpen()


Copyright © 1995-2010 Mort Bay Consulting. All Rights Reserved.