Package io.grpc.internal
Interface LongCounter
- All Known Implementing Classes:
ReflectionLongAdderCounter
public interface LongCounter
An interface for a long base counter.
-
Method Summary
-
Method Details
-
add
void add(long delta) Adds the delta to this counter. -
value
long value()Returns the value of this counter.
-