File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 26
26
routineGroup * routineGroup
27
27
quit chan struct {}
28
28
ready chan struct {}
29
+ newTaskAdded chan struct {}
29
30
worker core.Worker
30
31
stopOnce sync.Once
31
32
stopFlag int32
@@ -43,6 +44,7 @@ func NewQueue(opts ...Option) (*Queue, error) {
43
44
routineGroup : newRoutineGroup (),
44
45
quit : make (chan struct {}),
45
46
ready : make (chan struct {}, 1 ),
47
+ newTaskAdded : make (chan struct {}),
46
48
workerCount : o .workerCount ,
47
49
logger : o .logger ,
48
50
worker : o .worker ,
@@ -147,6 +149,7 @@ func (q *Queue) queue(m *job.Message) error {
147
149
}
148
150
149
151
q .metric .IncSubmittedTask ()
152
+ q .newTaskAdded <- struct {}{}
150
153
151
154
return nil
152
155
}
@@ -320,8 +323,8 @@ func (q *Queue) start() {
320
323
close (tasks )
321
324
return
322
325
}
323
- case <- time . After ( time . Second ) :
324
- // sleep 1 second to fetch new task
326
+ case <- q . newTaskAdded :
327
+ // New task added
325
328
}
326
329
}
327
330
}
You can’t perform that action at this time.
0 commit comments