public static enum AsyncResultFilter.Decision extends Enum<AsyncResultFilter.Decision>
Enum Constant and Description |
---|
BREAK
Break out of the processing of the distributed task and move to the reduce phase
including the current result.
|
CONTINUE
Continue processing the distributed task.
|
SKIP
Skip this result and continue processing the rest of the results.
|
SKIP_AND_BREAK
Skip this result and breaks out of the processing of the distributed task and move to the
reduce phase.
|
Modifier and Type | Method and Description |
---|---|
static AsyncResultFilter.Decision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncResultFilter.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncResultFilter.Decision CONTINUE
public static final AsyncResultFilter.Decision BREAK
public static final AsyncResultFilter.Decision SKIP
public static final AsyncResultFilter.Decision SKIP_AND_BREAK
public static AsyncResultFilter.Decision[] values()
for (AsyncResultFilter.Decision c : AsyncResultFilter.Decision.values()) System.out.println(c);
public static AsyncResultFilter.Decision 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 © GigaSpaces.