Class 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 Detail

      • ConcurrentAccessController

        public ConcurrentAccessController​(int limit)
    • 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)