public static enum StreamConfig.InputRequirement extends Enum<StreamConfig.InputRequirement>
SORTED inputs, records are sorted/grouped by key and all
records of a given key are passed to the operator consecutively before moving on to the next
group.| Enum Constant and Description |
|---|
PASS_THROUGH
Records from
PASS_THROUGH inputs are passed to the operator before passing any
records from SORTED inputs. |
SORTED
Records from all sorted inputs are grouped (sorted) by key and are then fed to the
operator one group at a time.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamConfig.InputRequirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamConfig.InputRequirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamConfig.InputRequirement SORTED
public static final StreamConfig.InputRequirement PASS_THROUGH
PASS_THROUGH inputs are passed to the operator before passing any
records from SORTED inputs. There are no guarantees on ordering between and
within the different PASS_THROUGH inputs.public static StreamConfig.InputRequirement[] values()
for (StreamConfig.InputRequirement c : StreamConfig.InputRequirement.values()) System.out.println(c);
public static StreamConfig.InputRequirement 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–2022 The Apache Software Foundation. All rights reserved.