Package de.hybris.platform.task
Enum Class RetryLaterException.Method
- All Implemented Interfaces:
Serializable,Comparable<RetryLaterException.Method>,Constable
- Enclosing class:
- RetryLaterException
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionabstract DatenextInvocation(Date lastCall, int tries, long delay) Computes the next time to reinvoke the asynchronous call after the call was rejected.static RetryLaterException.MethodReturns the enum constant of this class with the specified name.static RetryLaterException.Method[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINEAR
-
EXPONENTIAL
-
EXACT_DATE
-
-
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
-
nextInvocation
Computes the next time to reinvoke the asynchronous call after the call was rejected.- Parameters:
lastCall- the last time the call was scheduled.tries- the number of calls done (and failed).delay- the delay as stated in theAsynchronousannotation.- Returns:
- the next time this call shall be scheduled or
nullif this call shall be discarded.
-