@PublicEvolving public static enum ExecutionConfigOptions.AsyncOutputMode extends Enum<ExecutionConfigOptions.AsyncOutputMode>
AsyncDataStream.OutputMode
.Enum Constant and Description |
---|
ALLOW_UNORDERED
Allow unordered output mode, will attempt to use
AsyncDataStream.OutputMode.UNORDERED when it does not affect the correctness of the
result, otherwise ORDERED will be still used. |
ORDERED
Ordered output mode, equivalent to
AsyncDataStream.OutputMode.ORDERED . |
Modifier and Type | Method and Description |
---|---|
static ExecutionConfigOptions.AsyncOutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionConfigOptions.AsyncOutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionConfigOptions.AsyncOutputMode ORDERED
AsyncDataStream.OutputMode.ORDERED
.public static final ExecutionConfigOptions.AsyncOutputMode ALLOW_UNORDERED
AsyncDataStream.OutputMode.UNORDERED
when it does not affect the correctness of the
result, otherwise ORDERED will be still used.public static ExecutionConfigOptions.AsyncOutputMode[] values()
for (ExecutionConfigOptions.AsyncOutputMode c : ExecutionConfigOptions.AsyncOutputMode.values()) System.out.println(c);
public static ExecutionConfigOptions.AsyncOutputMode 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–2024 The Apache Software Foundation. All rights reserved.