public static interface Tcp.ConnectionClosed extends Tcp.Event, DeadLetterSuppression
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getErrorCause()
If
isErrorClosed returns true, then the error condition can be
retrieved by this method. |
boolean |
isAborted()
true iff the connection has been closed in response to an Abort command. |
boolean |
isConfirmed()
true iff the connection has been fully closed in response to a
ConfirmedClose command. |
boolean |
isErrorClosed()
true iff the connection has been closed due to an IO error. |
boolean |
isPeerClosed()
true iff the connection has been closed by the peer; in case
keepOpenOnPeerClosed is in effect as per the Tcp.Register command,
this connection’s reading half is now closed. |
boolean isAborted()
true iff the connection has been closed in response to an Abort command.boolean isConfirmed()
true iff the connection has been fully closed in response to a
ConfirmedClose command.boolean isPeerClosed()
true iff the connection has been closed by the peer; in case
keepOpenOnPeerClosed is in effect as per the Tcp.Register command,
this connection’s reading half is now closed.boolean isErrorClosed()
true iff the connection has been closed due to an IO error.java.lang.String getErrorCause()
isErrorClosed returns true, then the error condition can be
retrieved by this method.