namespace FabAccessAPI
{
public enum ConnectionStatusChange
{
///
/// Client has established connection to server.
///
Connected,
///
/// Client has closed connection to server.
///
Disconnected,
///
/// Connection was lost and Client has reestablished connection to server.
///
Reconnected,
///
/// Connection was lost and can be reestablished with reconnect
/// Connection should be closed if reconnecting fails.
///
ConnectionLoss
}
}