Package org.apache.pulsar.client.api
Enum KeySharedMode
- java.lang.Object
-
- java.lang.Enum<KeySharedMode>
-
- org.apache.pulsar.client.api.KeySharedMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<KeySharedMode>
@Public @Stable public enum KeySharedMode extends java.lang.Enum<KeySharedMode>
KeyShared mode of KeyShared subscription.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTO_SPLIT
Auto split while new consumer connected.STICKY
New consumer with fixed hash range to attach the topic, if new consumer use conflict hash range with exits consumers, new consumer will be rejected.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeySharedMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KeySharedMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO_SPLIT
public static final KeySharedMode AUTO_SPLIT
Auto split while new consumer connected.
-
STICKY
public static final KeySharedMode STICKY
New consumer with fixed hash range to attach the topic, if new consumer use conflict hash range with exits consumers, new consumer will be rejected.
-
-
Method Detail
-
values
public static KeySharedMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeySharedMode c : KeySharedMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeySharedMode valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-