Enum Class LimitAlgorithm.Outcome.Timing
java.lang.Object
java.lang.Enum<LimitAlgorithm.Outcome.Timing>
io.helidon.common.concurrency.limits.LimitAlgorithm.Outcome.Timing
- All Implemented Interfaces:
Serializable
,Comparable<LimitAlgorithm.Outcome.Timing>
,Constable
- Enclosing interface:
LimitAlgorithm.Outcome
When the algorithm made its decision relative to the moment when it was asked about a particular work item.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlgorithm had to wait to decide because too many concurrent executions were already in progress when it was asked about the new work item.Algorithm decided immediately upon being invoked to evaluate whether the caller should process the work item.Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static LimitAlgorithm.Outcome.Timing[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IMMEDIATE
Algorithm decided immediately upon being invoked to evaluate whether the caller should process the work item. -
DEFERRED
Algorithm had to wait to decide because too many concurrent executions were already in progress when it was asked about the new work item. -
UNKNOWN
@Deprecated(since="4.3.0", forRemoval=true) public static final LimitAlgorithm.Outcome.Timing UNKNOWNDeprecated, for removal: This API element is subject to removal in a future version.The algorithm decided how to deal with the work item but the caller used a legacy API that does not reveal theLimitAlgorithm.Outcome
of the decision. As a result, the default implementation cannot find out whether the decision was immediate or deferred.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-