Package org.apache.jackrabbit.oak.stats
Interface CounterStats
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddec()Decrement the counter by one.voiddec(long n)Decrement the counter byn.voidinc()Increment the counter by one.voidinc(long n)Increment the counter byn. 
 - 
 
- 
- 
Method Detail
- 
inc
void inc()
Increment the counter by one. 
- 
dec
void dec()
Decrement the counter by one. 
- 
inc
void inc(long n)
Increment the counter byn.- Parameters:
 n- the amount by which the counter will be increased
 
- 
dec
void dec(long n)
Decrement the counter byn.- Parameters:
 n- the amount by which the counter will be decreased
 
 - 
 
 -