-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworker.go
More file actions
69 lines (59 loc) · 1.35 KB
/
worker.go
File metadata and controls
69 lines (59 loc) · 1.35 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package workerThread
import (
"github.com/sirupsen/logrus"
)
// Payload interface
type Payload interface {
Do() error
}
// Job represents the job to be run
type Job struct {
Payload Payload
}
// A buffered channel that we can send work requests on.
var JobQueue chan Job
// Worker represents the worker that executes the job
type Worker struct {
WorkerPool chan chan Job
JobChannel chan Job
quit chan bool
}
func NewWorker(workerPool chan chan Job) Worker {
return Worker{
WorkerPool: workerPool,
JobChannel: make(chan Job),
quit: make(chan bool),
}
}
// Start methods starts the run loop for the worker, listening for a quit channel
// in case we need to stop it.
func (w Worker) Start() {
go func() {
for {
// register the current worker into the worker queue.
w.WorkerPool <- w.JobChannel
select {
case job := <-w.JobChannel:
// we hava received a worker request.
if err := job.Payload.Do(); err != nil {
logrus.Errorf("Error uploading to S3: %s", err.Error())
}
case <-w.quit:
// we hava received a signal to stop
// to do
return
}
}
}()
}
// Stop signals the worker to stop listening for work requests
func (w Worker) Stop() {
go func() {
w.quit <- true
}()
}
func EnJobQueue(job Job) {
logrus.Println("test a enqueue")
JobQueue <- job
logrus.Println("en queue successfully")
}