Interface ICounterManager
public interface ICounterManager
- Author:
- vlygeros
- 
Method SummaryModifier and TypeMethodDescriptionintgetCurrentCounter(String counterType) Retrieves the counters value.intnextCounter(String counterType) Retrieves the counter and increments its value.
- 
Method Details- 
nextCounterRetrieves the counter and increments its value.- Parameters:
- counterType- The type of counter.
- Returns:
- The new value to use.
 
- 
getCurrentCounterRetrieves the counters value.- Parameters:
- counterType- The type of counter.
- Returns:
- The current value
 
 
-