public enum HostEventType extends Enum<HostEventType>
Enum Constant and Description |
---|
HOST_HEARTBEAT_HEALTHY
A healthy heartbeat event received from the Host.
|
HOST_HEARTBEAT_LOST
No heartbeat received from the Host within the defined expiry interval.
|
HOST_HEARTBEAT_UNHEALTHY
A non-healthy heartbeat event received from the Host.
|
HOST_REGISTRATION_REQUEST
Event to denote when a registration request is received from a Host
|
HOST_STATUS_UPDATES_RECEIVED
Host status check response received.
|
Modifier and Type | Method and Description |
---|---|
static HostEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostEventType HOST_REGISTRATION_REQUEST
public static final HostEventType HOST_STATUS_UPDATES_RECEIVED
public static final HostEventType HOST_HEARTBEAT_HEALTHY
public static final HostEventType HOST_HEARTBEAT_LOST
public static final HostEventType HOST_HEARTBEAT_UNHEALTHY
public static HostEventType[] values()
for (HostEventType c : HostEventType.values()) System.out.println(c);
public static HostEventType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014. All rights reserved.