public static enum AbstractReactiveProcessorTestCase.Mode extends Enum<AbstractReactiveProcessorTestCase.Mode>
| Enum Constant and Description |
|---|
BLOCKING
Test using
Processor#process(InternalEvent) blocking API. |
NON_BLOCKING
Test using new reactive API by creating a
Mono and blocking and waiting for completion (value, empty or error) |
| Modifier and Type | Method and Description |
|---|---|
static AbstractReactiveProcessorTestCase.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractReactiveProcessorTestCase.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractReactiveProcessorTestCase.Mode BLOCKING
Processor#process(InternalEvent) blocking API.public static final AbstractReactiveProcessorTestCase.Mode NON_BLOCKING
Mono and blocking and waiting for completion (value, empty or error)public static AbstractReactiveProcessorTestCase.Mode[] values()
for (AbstractReactiveProcessorTestCase.Mode c : AbstractReactiveProcessorTestCase.Mode.values()) System.out.println(c);
public static AbstractReactiveProcessorTestCase.Mode 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 © 2003–2018 MuleSoft, Inc.. All rights reserved.