Class ConcurrentAccessController
- java.lang.Object
-
- org.apache.synapse.commons.throttle.core.ConcurrentAccessController
-
- All Implemented Interfaces:
Serializable
public class ConcurrentAccessController extends Object implements Serializable
Controls the concurrent access through throttle to the system based on policy- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConcurrentAccessController(int limit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAndDecrement()
Decrements by one the current value and Returns the previous valueint
getLimit()
Gets the Max number of access - access limitint
incrementAndGet()
Increments by one the current value and Returns the the updated valuevoid
set(int newValue)
Resets the counter and the limitvoid
updateCounter(boolean isIncrement)
-
-
-
Method Detail
-
getAndDecrement
public int getAndDecrement()
Decrements by one the current value and Returns the previous value- Returns:
- the previous value
-
incrementAndGet
public int incrementAndGet()
Increments by one the current value and Returns the the updated value- Returns:
- the updated value
-
getLimit
public int getLimit()
Gets the Max number of access - access limit- Returns:
- the limit
-
set
public void set(int newValue)
Resets the counter and the limit- Parameters:
newValue
- The new Value
-
updateCounter
public void updateCounter(boolean isIncrement)
-
-