Package org.apache.qpid.protonj2.client
Class DisconnectionEvent
- java.lang.Object
-
- org.apache.qpid.protonj2.client.DisconnectionEvent
-
public class DisconnectionEvent extends Object
An event object that accompanies events fired to handlers configured in theConnectionOptions
which are signaled during specificConnection
life-cycle stages.
-
-
Constructor Summary
Constructors Constructor Description DisconnectionEvent(String host, int port, ClientIOException failureCause)
Creates the event object with all immutable data provided.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClientIOException
failureCause()
Gets the failure cause that is associated with this event if the event indicates an error stage in theConnection
life-cycle such as a connection being interrupted which might later be recovered or a failure to establish or reconnect a previously establishedConnection
.String
host()
Gets the host that is associated with this event which for a successfulConnection
event would be the currently active host and for an interrupted or failed Connection this host would indicate the host where theConnection
had previously been established.int
port()
Gets the port that is associated with this event which for a successfulConnection
event would be the currently active port and for an interrupted or failed Connection this port would indicate the host where theConnection
had previously been established.
-
-
-
Constructor Detail
-
DisconnectionEvent
public DisconnectionEvent(String host, int port, ClientIOException failureCause)
Creates the event object with all immutable data provided.- Parameters:
host
- the host that is associated with thisDisconnectionEvent
port
- the port that is associated with thisDisconnectionEvent
failureCause
- the failure cause that is associated with thisDisconnectionEvent
-
-
Method Detail
-
host
public String host()
Gets the host that is associated with this event which for a successfulConnection
event would be the currently active host and for an interrupted or failed Connection this host would indicate the host where theConnection
had previously been established.- Returns:
- the host that is associated with this
DisconnectionEvent
-
port
public int port()
Gets the port that is associated with this event which for a successfulConnection
event would be the currently active port and for an interrupted or failed Connection this port would indicate the host where theConnection
had previously been established.- Returns:
- the port that is associated with this
DisconnectionEvent
-
failureCause
public ClientIOException failureCause()
Gets the failure cause that is associated with this event if the event indicates an error stage in theConnection
life-cycle such as a connection being interrupted which might later be recovered or a failure to establish or reconnect a previously establishedConnection
.- Returns:
- the failureCause that is associated with this
DisconnectionEvent
-
-