Counter incremented and decremented base on int64 value.
| 7 | |
| 8 | // Counter incremented and decremented base on int64 value. |
| 9 | type Counter interface { |
| 10 | StartTime() time.Time |
| 11 | Clear() |
| 12 | Count() int64 |
| 13 | Dec(int64) |
| 14 | Inc(int64) |
| 15 | } |
| 16 | |
| 17 | // NewCounter constructs a new StandardCounter. |
| 18 | func NewCounter() Counter { |
no outgoing calls
no test coverage detected