org.eclipse.jetty.websocket
Class WebSocketConnectionD08
java.lang.Object
org.eclipse.jetty.io.AbstractConnection
org.eclipse.jetty.websocket.WebSocketConnectionD08
- All Implemented Interfaces:
- Connection, AsyncConnection, WebSocketConnection
- Direct Known Subclasses:
- WebSocketServletConnectionD08
public class WebSocketConnectionD08
- extends AbstractConnection
- implements WebSocketConnection
Constructor Summary |
WebSocketConnectionD08(WebSocket websocket,
EndPoint endpoint,
WebSocketBuffers buffers,
long timestamp,
int maxIdleTime,
java.lang.String protocol,
java.util.List<Extension> extensions,
int draft)
|
WebSocketConnectionD08(WebSocket websocket,
EndPoint endpoint,
WebSocketBuffers buffers,
long timestamp,
int maxIdleTime,
java.lang.String protocol,
java.util.List<Extension> extensions,
int draft,
MaskGen maskgen)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
WebSocketConnectionD08
public WebSocketConnectionD08(WebSocket websocket,
EndPoint endpoint,
WebSocketBuffers buffers,
long timestamp,
int maxIdleTime,
java.lang.String protocol,
java.util.List<Extension> extensions,
int draft)
throws java.io.IOException
- Throws:
java.io.IOException
WebSocketConnectionD08
public WebSocketConnectionD08(WebSocket websocket,
EndPoint endpoint,
WebSocketBuffers buffers,
long timestamp,
int maxIdleTime,
java.lang.String protocol,
java.util.List<Extension> extensions,
int draft,
MaskGen maskgen)
throws java.io.IOException
- Throws:
java.io.IOException
getConnection
public WebSocket.Connection getConnection()
- Specified by:
getConnection
in interface WebSocketConnection
getExtensions
public java.util.List<Extension> getExtensions()
- Specified by:
getExtensions
in interface WebSocketConnection
handle
public Connection handle()
throws java.io.IOException
- Description copied from interface:
Connection
- Handle the connection.
- Specified by:
handle
in interface Connection
- Returns:
- The Connection to use for the next handling of the connection.
This allows protocol upgrades and support for CONNECT.
- Throws:
java.io.IOException
- if the handling of I/O operations fail
onInputShutdown
public void onInputShutdown()
throws java.io.IOException
- Specified by:
onInputShutdown
in interface AsyncConnection
- Throws:
java.io.IOException
isIdle
public boolean isIdle()
- Specified by:
isIdle
in interface Connection
- Returns:
- whether this connection is idle, that is not parsing and not generating
- See Also:
Connection.onIdleExpired(long)
onIdleExpired
public void onIdleExpired(long idleForMs)
- Description copied from interface:
Connection
- Called when the connection idle timeout expires
- Specified by:
onIdleExpired
in interface Connection
- Overrides:
onIdleExpired
in class AbstractConnection
- Parameters:
idleForMs
- how long the connection has been idle- See Also:
Connection.isIdle()
isSuspended
public boolean isSuspended()
- Description copied from interface:
Connection
The semantic of this method is to return true to indicate interest in further reads,
or false otherwise, but it is misnamed and should be really called isReadInterested()
.
- Specified by:
isSuspended
in interface Connection
- Returns:
- true to indicate interest in further reads, false otherwise
onClose
public void onClose()
- Description copied from interface:
Connection
- Called after the connection is closed
- Specified by:
onClose
in interface Connection
closeIn
public void closeIn(int code,
java.lang.String message)
closeOut
public void closeOut(int code,
java.lang.String message)
shutdown
public void shutdown()
- Specified by:
shutdown
in interface WebSocketConnection
fillBuffersFrom
public void fillBuffersFrom(Buffer buffer)
- Specified by:
fillBuffersFrom
in interface WebSocketConnection
onFrameHandshake
protected void onFrameHandshake()
onWebSocketOpen
protected void onWebSocketOpen()
hashKey
public static java.lang.String hashKey(java.lang.String key)
toString
public java.lang.String toString()
- Overrides:
toString
in class AbstractConnection
Copyright © 2012. All Rights Reserved.