|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.eclipse.jetty.io.nio.SslConnection.SslEndPoint
public class SslConnection.SslEndPoint
| Constructor Summary | |
|---|---|
SslConnection.SslEndPoint()
|
|
| Method Summary | |
|---|---|
void |
asyncDispatch()
Dispatch the endpoint to a thread to attend to it. |
boolean |
blockReadable(long millisecs)
|
boolean |
blockWritable(long millisecs)
|
void |
cancelTimeout(Timeout.Task task)
|
void |
close()
Close any backing stream associated with the endpoint |
int |
fill(Buffer buffer)
Fill the buffer from the current putIndex to it's capacity from whatever byte source is backing the buffer. |
void |
flush()
Flush any buffered output. |
int |
flush(Buffer buffer)
Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer. |
int |
flush(Buffer header,
Buffer buffer,
Buffer trailer)
Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer. |
Connection |
getConnection()
|
String |
getLocalAddr()
|
String |
getLocalHost()
|
int |
getLocalPort()
|
int |
getMaxIdleTime()
Get the max idle time in ms. |
String |
getRemoteAddr()
|
String |
getRemoteHost()
|
int |
getRemotePort()
|
SSLEngine |
getSslEngine()
|
Object |
getTransport()
|
boolean |
hasProgressed()
|
boolean |
isBlocking()
|
boolean |
isCheckForIdle()
Get if the endpoint should be checked for idleness |
boolean |
isInputShutdown()
|
boolean |
isOpen()
|
boolean |
isOutputShutdown()
|
boolean |
isWritable()
|
void |
onIdleExpired()
Callback when idle. |
void |
scheduleTimeout(Timeout.Task task,
long timeoutMs)
|
void |
scheduleWrite()
Schedule a write dispatch. |
void |
setCheckForIdle(boolean check)
Set if the endpoint should be checked for idleness |
void |
setConnection(Connection connection)
|
void |
setMaxIdleTime(int timeMs)
Set the max idle time. |
void |
shutdownInput()
Shutdown any backing input stream associated with the endpoint |
void |
shutdownOutput()
Shutdown any backing output stream associated with the endpoint |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public SslConnection.SslEndPoint()
| Method Detail |
|---|
public SSLEngine getSslEngine()
public void shutdownOutput()
throws IOException
EndPoint
shutdownOutput in interface EndPointIOExceptionpublic boolean isOutputShutdown()
isOutputShutdown in interface EndPoint
public void shutdownInput()
throws IOException
EndPoint
shutdownInput in interface EndPointIOExceptionpublic boolean isInputShutdown()
isInputShutdown in interface EndPoint
public void close()
throws IOException
EndPoint
close in interface EndPointIOException
public int fill(Buffer buffer)
throws IOException
EndPoint
fill in interface EndPointint value indicating the number of bytes
filled or -1 if EOF is reached.
EofException - If input is shutdown or the endpoint is closed.
IOException
public int flush(Buffer buffer)
throws IOException
EndPoint
flush in interface EndPointbuffer - The buffer to flush. This buffers getIndex is updated.
EofException - If the endpoint is closed or output is shutdown.
IOException
public int flush(Buffer header,
Buffer buffer,
Buffer trailer)
throws IOException
EndPoint
flush in interface EndPointheader - A buffer to write before flushing this buffer. This buffers getIndex is updated.buffer - The buffer to flush. This buffers getIndex is updated.trailer - A buffer to write after flushing this buffer. This buffers getIndex is updated.
IOException
public boolean blockReadable(long millisecs)
throws IOException
blockReadable in interface EndPointIOException
public boolean blockWritable(long millisecs)
throws IOException
blockWritable in interface EndPointIOExceptionpublic boolean isOpen()
isOpen in interface EndPointpublic Object getTransport()
getTransport in interface EndPoint
public void flush()
throws IOException
EndPoint
flush in interface EndPointEofException - If the endpoint is closed or output is shutdown.
IOExceptionpublic void asyncDispatch()
AsyncEndPoint
asyncDispatch in interface AsyncEndPointpublic void scheduleWrite()
AsyncEndPoint
scheduleWrite in interface AsyncEndPointpublic void onIdleExpired()
AsyncEndPointAn endpoint is idle if there has been no IO activity for
EndPoint.getMaxIdleTime() and AsyncEndPoint.isCheckForIdle() is true.
onIdleExpired in interface AsyncEndPointpublic void setCheckForIdle(boolean check)
AsyncEndPoint
setCheckForIdle in interface AsyncEndPointpublic boolean isCheckForIdle()
AsyncEndPoint
isCheckForIdle in interface AsyncEndPoint
public void scheduleTimeout(Timeout.Task task,
long timeoutMs)
scheduleTimeout in interface AsyncEndPointpublic void cancelTimeout(Timeout.Task task)
cancelTimeout in interface AsyncEndPointpublic boolean isWritable()
isWritable in interface AsyncEndPointpublic boolean hasProgressed()
hasProgressed in interface AsyncEndPointAsyncEndPoint.hasProgressed()public String getLocalAddr()
getLocalAddr in interface EndPointEndPoint is bound, or null
if this EndPoint does not represent a network connection.public String getLocalHost()
getLocalHost in interface EndPointEndPoint is bound, or null
if this EndPoint does not represent a network connection.public int getLocalPort()
getLocalPort in interface EndPointEndPoint is listening, or 0
if this EndPoint does not represent a network connection.public String getRemoteAddr()
getRemoteAddr in interface EndPointEndPoint is connected, or null
if this EndPoint does not represent a network connection.public String getRemoteHost()
getRemoteHost in interface EndPointEndPoint is connected, or null
if this EndPoint does not represent a network connection.public int getRemotePort()
getRemotePort in interface EndPointEndPoint is connected, or 0
if this EndPoint does not represent a network connection.public boolean isBlocking()
isBlocking in interface EndPointpublic int getMaxIdleTime()
EndPointThe max idle time is the time the endpoint can be idle before
extraordinary handling takes place. This loosely corresponds to
the Socket.getSoTimeout() for blocking connections,
but AsyncEndPoint implementations must use other mechanisms
to implement the max idle time.
getMaxIdleTime in interface EndPoint
public void setMaxIdleTime(int timeMs)
throws IOException
EndPoint
setMaxIdleTime in interface EndPointtimeMs - the max idle time in MS. Timeout <= 0 implies an infinite timeout
IOException - if the timeout cannot be set.public Connection getConnection()
getConnection in interface ConnectedEndPointpublic void setConnection(Connection connection)
setConnection in interface ConnectedEndPointpublic String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||