Package io.confluent.parallelconsumer
Enum ParallelConsumerOptions.ProcessingOrder
java.lang.Object
java.lang.Enum<ParallelConsumerOptions.ProcessingOrder>
io.confluent.parallelconsumer.ParallelConsumerOptions.ProcessingOrder
- All Implemented Interfaces:
Serializable,Comparable<ParallelConsumerOptions.ProcessingOrder>,Constable
- Enclosing class:
- ParallelConsumerOptions<K,V>
public static enum ParallelConsumerOptions.ProcessingOrder extends Enum<ParallelConsumerOptions.ProcessingOrder>
The ordering guarantee to use.
-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description static ParallelConsumerOptions.ProcessingOrdervalueOf(String name)Returns the enum constant of this type with the specified name.static ParallelConsumerOptions.ProcessingOrder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNORDERED
No ordering is guaranteed, not even partition order. Fastest. Concurrency is at most the max number of concurrency or max number of uncommitted messages, limited by the max concurrency or uncommitted settings. -
PARTITION
Process messages within a partition in order, but process multiple partitions in parallel. Similar to running more consumer for a topic. Concurrency is at most the number of partitions. -
KEY
Process messages in key order. Concurrency is at most the number of unique keys in a topic, limited by the max concurrency or uncommitted settings.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-