public abstract class AbstractConnection extends Object implements Connection
A convenience base implementation of Connection.
This class uses the capabilities of the EndPoint API to provide a
more traditional style of async reading. A call to fillInterested()
will schedule a callback to onFillable() or onFillInterestedFailed(Throwable)
as appropriate.
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo| Modifier | Constructor and Description |
|---|---|
protected |
AbstractConnection(EndPoint endp,
Executor executor) |
| Modifier and Type | Method and Description |
|---|---|
void |
addListener(Connection.Listener listener)
Adds a listener of connection events.
|
void |
close()
Performs a logical close of this connection.
|
protected void |
failedCallback(Callback callback,
Throwable x) |
void |
fillInterested()
Utility method to be called to register read interest.
|
long |
getBytesIn() |
long |
getBytesOut() |
long |
getCreatedTimeStamp() |
EndPoint |
getEndPoint() |
protected Executor |
getExecutor() |
int |
getInputBufferSize() |
int |
getMessagesIn() |
int |
getMessagesOut() |
boolean |
isDispatchIO()
Deprecated.
|
boolean |
isFillInterested() |
void |
onClose()
Callback method invoked when this connection is closed.
|
abstract void |
onFillable()
Callback method invoked when the endpoint is ready to be read.
|
protected void |
onFillInterestedFailed(Throwable cause)
Callback method invoked when the endpoint failed to be ready to be read.
|
boolean |
onIdleExpired()
Callback method invoked upon an idle timeout event.
|
void |
onOpen()
Callback method invoked when this connection is opened.
|
protected boolean |
onReadTimeout()
Callback method invoked when the endpoint failed to be ready to be read after a timeout
|
void |
removeListener(Connection.Listener listener)
Removes a listener of connection events.
|
void |
setInputBufferSize(int inputBufferSize) |
String |
toString() |
public void addListener(Connection.Listener listener)
ConnectionAdds a listener of connection events.
addListener in interface Connectionlistener - the listener to addpublic void removeListener(Connection.Listener listener)
ConnectionRemoves a listener of connection events.
removeListener in interface Connectionlistener - the listener to removepublic int getInputBufferSize()
public void setInputBufferSize(int inputBufferSize)
protected Executor getExecutor()
@Deprecated public boolean isDispatchIO()
public void fillInterested()
Utility method to be called to register read interest.
After a call to this method, onFillable() or onFillInterestedFailed(Throwable)
will be called back as appropriate.
onFillable()public boolean isFillInterested()
public abstract void onFillable()
Callback method invoked when the endpoint is ready to be read.
fillInterested()protected void onFillInterestedFailed(Throwable cause)
Callback method invoked when the endpoint failed to be ready to be read.
cause - the exception that caused the failureprotected boolean onReadTimeout()
Callback method invoked when the endpoint failed to be ready to be read after a timeout
public void onOpen()
ConnectionCallback method invoked when this connection is opened.
Creators of the connection implementation are responsible for calling this method.
onOpen in interface Connectionpublic void onClose()
ConnectionCallback method invoked when this connection is closed.
Creators of the connection implementation are responsible for calling this method.
onClose in interface Connectionpublic EndPoint getEndPoint()
getEndPoint in interface ConnectionEndPoint associated with this Connectionpublic void close()
ConnectionPerforms a logical close of this connection.
For simple connections, this may just mean to delegate the close to the associated
EndPoint but, for example, SSL connections should write the SSL close message
before closing the associated EndPoint.
close in interface Closeableclose in interface AutoCloseableclose in interface Connectionpublic boolean onIdleExpired()
ConnectionCallback method invoked upon an idle timeout event.
Implementations of this method may return true to indicate that the idle timeout handling should proceed normally, typically failing the EndPoint and causing it to be closed.
When false is returned, the handling of the idle timeout event is halted immediately and the EndPoint left in the state it was before the idle timeout event.
onIdleExpired in interface Connectionpublic int getMessagesIn()
getMessagesIn in interface Connectionpublic int getMessagesOut()
getMessagesOut in interface Connectionpublic long getBytesIn()
getBytesIn in interface Connectionpublic long getBytesOut()
getBytesOut in interface Connectionpublic long getCreatedTimeStamp()
getCreatedTimeStamp in interface ConnectionCopyright © 1995-2016 Webtide. All Rights Reserved.