public static interface D3Slave.State
Modifier and Type | Method and Description |
---|---|
UserMessage |
getLabel()
Returns the state's label.
|
boolean |
isAvailable()
Checks if the replica is ready to receive D3 actions.
|
boolean |
isInitializing()
Checks if the replica has not finished initializing.
|
boolean |
isOutOfService()
Checks if the replica cannot be reached.
|
boolean |
isStopped()
Checks if the replica is stopped.
|
boolean |
isUnavailable()
Checks if the replica is unavailable.
|
UserMessage getLabel()
boolean isAvailable()
true
if the replica is available, otherwise returns false
.boolean isInitializing()
true
if the replica is initializing, otherwise returns false
.boolean isUnavailable()
true
if the replica is unavailable, otherwise returns false
.boolean isStopped()
true
if the replica is stopped, otherwise returns false
.boolean isOutOfService()
true
if the replica is out of service (which means it cannot be reached), otherwise
returns false
.