-
Notifications
You must be signed in to change notification settings - Fork 22
/
counter.go
50 lines (41 loc) · 1014 Bytes
/
counter.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package task
import (
"sync/atomic"
"time"
)
// Counter incremented and decremented base on int64 value.
type Counter interface {
StartTime() time.Time
Clear()
Count() int64
Dec(int64)
Inc(int64)
}
// NewCounter constructs a new StandardCounter.
func NewCounter() Counter {
return &StandardCounter{startTime: time.Now()}
}
// StandardCounter is the standard implementation of a Counter
type StandardCounter struct {
count int64
startTime time.Time
}
func (c *StandardCounter) StartTime() time.Time {
return c.startTime
}
// Clear sets the counter to zero.
func (c *StandardCounter) Clear() {
atomic.StoreInt64(&c.count, 0)
}
// Count returns the current count.
func (c *StandardCounter) Count() int64 {
return atomic.LoadInt64(&c.count)
}
// Dec decrements the counter by the given amount.
func (c *StandardCounter) Dec(i int64) {
atomic.AddInt64(&c.count, -i)
}
// Inc increments the counter by the given amount.
func (c *StandardCounter) Inc(i int64) {
atomic.AddInt64(&c.count, i)
}