@@ -19,12 +19,13 @@ const (
19
19
20
20
type (
21
21
Producer interface {
22
- atWithWrapper (body []byte , at time.Time ) (string , error )
23
22
At (body []byte , at time.Time ) (string , error )
24
23
Close () error
25
- delayWithWrapper (body []byte , delay time.Duration ) (string , error )
26
24
Delay (body []byte , delay time.Duration ) (string , error )
27
25
Revoke (ids string ) error
26
+
27
+ at (body []byte , at time.Time ) (string , error )
28
+ delay (body []byte , delay time.Duration ) (string , error )
28
29
}
29
30
30
31
producerCluster struct {
@@ -57,9 +58,7 @@ func NewProducer(beanstalks []Beanstalk) Producer {
57
58
58
59
func (p * producerCluster ) At (body []byte , at time.Time ) (string , error ) {
59
60
wrapped := wrap (body , at )
60
- return p .insert (func (node Producer ) (string , error ) {
61
- return node .atWithWrapper (wrapped , at )
62
- })
61
+ return p .at (wrapped , at )
63
62
}
64
63
65
64
func (p * producerCluster ) Close () error {
@@ -74,9 +73,7 @@ func (p *producerCluster) Close() error {
74
73
75
74
func (p * producerCluster ) Delay (body []byte , delay time.Duration ) (string , error ) {
76
75
wrapped := wrap (body , time .Now ().Add (delay ))
77
- return p .insert (func (node Producer ) (string , error ) {
78
- return node .delayWithWrapper (wrapped , delay )
79
- })
76
+ return p .delay (wrapped , delay )
80
77
}
81
78
82
79
func (p * producerCluster ) Revoke (ids string ) error {
@@ -98,10 +95,22 @@ func (p *producerCluster) Revoke(ids string) error {
98
95
return be .Err ()
99
96
}
100
97
98
+ func (p * producerCluster ) at (body []byte , at time.Time ) (string , error ) {
99
+ return p .insert (func (node Producer ) (string , error ) {
100
+ return node .at (body , at )
101
+ })
102
+ }
103
+
101
104
func (p * producerCluster ) cloneNodes () []Producer {
102
105
return append ([]Producer (nil ), p .nodes ... )
103
106
}
104
107
108
+ func (p * producerCluster ) delay (body []byte , delay time.Duration ) (string , error ) {
109
+ return p .insert (func (node Producer ) (string , error ) {
110
+ return node .delay (body , delay )
111
+ })
112
+ }
113
+
105
114
func (p * producerCluster ) getWriteNodes () []Producer {
106
115
if len (p .nodes ) <= replicaNodes {
107
116
return p .nodes
@@ -156,15 +165,3 @@ func (p *producerCluster) insert(fn func(node Producer) (string, error)) (string
156
165
157
166
return "" , be .Err ()
158
167
}
159
-
160
- func (p * producerCluster ) atWithWrapper (body []byte , at time.Time ) (string , error ) {
161
- return p .insert (func (node Producer ) (string , error ) {
162
- return node .atWithWrapper (body , at )
163
- })
164
- }
165
-
166
- func (p * producerCluster ) delayWithWrapper (body []byte , delay time.Duration ) (string , error ) {
167
- return p .insert (func (node Producer ) (string , error ) {
168
- return node .delayWithWrapper (body , delay )
169
- })
170
- }
0 commit comments