public enum DrSenderLoadBalancingMode extends Enum<DrSenderLoadBalancingMode>
| Enum Constant and Description |
|---|
DR_RANDOM
Balance sender hubs in random fashion.
|
DR_ROUND_ROBIN
Balance sender hubs in round-robin fashion.
|
| Modifier and Type | Method and Description |
|---|---|
static @Nullable DrSenderLoadBalancingMode |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static DrSenderLoadBalancingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrSenderLoadBalancingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrSenderLoadBalancingMode DR_RANDOM
public static final DrSenderLoadBalancingMode DR_ROUND_ROBIN
public static DrSenderLoadBalancingMode[] values()
for (DrSenderLoadBalancingMode c : DrSenderLoadBalancingMode.values()) System.out.println(c);
public static DrSenderLoadBalancingMode 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 null@Nullable public static @Nullable DrSenderLoadBalancingMode fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.
GridGain In-Memory Computing Platform : ver. 8.9.26 Release Date : October 16 2025