Interface LLServerMetricsMXBean
- All Known Implementing Classes:
LLServerMetricsBean
Server metrics.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddDeletes(long count) Increment the number of deletes performed.voidaddReads(long count) Increment the number of reads performed.voidaddWrites(long count) Increment the number of writes performed.longlonggetReads()long
-
Method Details
-
getWrites
long getWrites()- Returns:
- The number of writes that have been performed.
-
getReads
long getReads()- Returns:
- The number of reads that have been performed.
-
getDeletes
long getDeletes()- Returns:
- The number of deletes that have been performed.
-
addWrites
void addWrites(long count) Increment the number of writes performed.- Parameters:
count- The count to add
-
addReads
void addReads(long count) Increment the number of reads performed.- Parameters:
count- The count to add
-
addDeletes
void addDeletes(long count) Increment the number of deletes performed.- Parameters:
count- The count to add
-