public class UsageStatistics
extends java.lang.Object
Constructor and Description |
---|
UsageStatistics() |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.Long,java.lang.Integer> |
getAndResetUsageStatistics()
Retrieves the current state of the usage statistics as a Map.
|
int |
getUsage(java.lang.Long id)
Retrieves the current usage count for the given Id.
|
void |
incrementUsage(java.lang.Long id)
Increments the usage count for the given Id.
|
boolean |
isEmpty()
Returns true if there are currently no statistics entries, false otherwise.
|
void |
printStatistics()
Prints all usage statistics.
|
void |
resetStatistics()
Resets the internal state of usage statistics.
|
int |
size()
Returns the number of current statistics entries.
|
public void incrementUsage(java.lang.Long id)
This method uses the readLock to allow concurrent access to the internal (thread-safe) ConcurrentHashMap
unless getAndResetUsageStatistics()
is called, which acquires the writeLock to copy and reset
the internal map, during which no new entries may be added to the internal map.
id
- The Id for which to increment the usage count.public boolean isEmpty()
This method checks whether the internal statistics map is empty, indicating whether any usage statistics have been recorded.
public int size()
This method retrieves the current count of entries in the internal statistics map, indicating how many distinct Ids have recorded usage statistics so far.
public int getUsage(java.lang.Long id)
id
- The Id for which to get the usage count.public void printStatistics()
public java.util.Map<java.lang.Long,java.lang.Integer> getAndResetUsageStatistics()
public void resetStatistics()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.