Package org.hipparchus.util
Interface Incrementor.MaxCountExceededCallback
-
- Enclosing class:
- Incrementor
public static interface Incrementor.MaxCountExceededCallback
Defines a method to be called at counter exhaustion. Thetrigger
method should usually throw an exception.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
trigger(int maximalCount)
Function called when the maximal count has been reached.
-
-
-
Method Detail
-
trigger
void trigger(int maximalCount) throws MathIllegalStateException
Function called when the maximal count has been reached.- Parameters:
maximalCount
- Maximal count.- Throws:
MathIllegalStateException
- at counter exhaustion
-
-