Package akka.io

Interface Tcp.ConnectionClosed

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method 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.
    • Method Detail

      • getErrorCause

        java.lang.String getErrorCause()
        If isErrorClosed returns true, then the error condition can be retrieved by this method.
      • isAborted

        boolean isAborted()
        true iff the connection has been closed in response to an Abort command.
      • isConfirmed

        boolean isConfirmed()
        true iff the connection has been fully closed in response to a ConfirmedClose command.
      • isErrorClosed

        boolean isErrorClosed()
        true iff the connection has been closed due to an IO error.
      • isPeerClosed

        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.