Package io.grpc.internal
Interface LongCounter
-
- All Known Implementing Classes:
AtomicLongCounter
,ReflectionLongAdderCounter
public interface LongCounter
An interface for a long base counter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(long delta)
Adds the delta to this counter.long
value()
Returns the value of this counter.
-