public enum HandlerStatus extends Enum<HandlerStatus>
Enum Constant and Description |
---|
BLOCKED
The handler will not accept any new reads until some external condition
has been met.
|
CLEAN
The handler has processed all data it could process and there is nothing
left for this handler to do.
|
DIRTY
There is something left in the handler that could be processed with another
call.
|
Modifier and Type | Method and Description |
---|---|
static HandlerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerStatus CLEAN
public static final HandlerStatus DIRTY
public static final HandlerStatus BLOCKED
public static HandlerStatus[] values()
for (HandlerStatus c : HandlerStatus.values()) System.out.println(c);
public static HandlerStatus 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 © 2021 Hazelcast, Inc.. All Rights Reserved.