erigon-pulse/metrics/counter.go

11 lines
185 B
Go
Raw Normal View History

2015-06-22 09:00:55 +00:00
package metrics
// Counters hold an int64 value that can be incremented and decremented.
type Counter interface {
Clear()
Count() int64
Dec(int64)
Inc(int64)
Snapshot() Counter
}