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, String data)
           
 

Method Detail

sendMessage

void sendMessage(byte frame,
                 String data)
                 throws IOException
Throws:
IOException

sendMessage

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

sendMessage

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

disconnect

void disconnect()

isOpen

boolean isOpen()


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