├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── chan_queue.go ├── chan_queue_test.go ├── go.mod ├── job.go ├── job_test.go ├── list_queue.go ├── list_queue_test.go ├── queue.go └── worker.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/README.md -------------------------------------------------------------------------------- /chan_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/chan_queue.go -------------------------------------------------------------------------------- /chan_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/chan_queue_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/LyricTian/queue 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/job.go -------------------------------------------------------------------------------- /job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/job_test.go -------------------------------------------------------------------------------- /list_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/list_queue.go -------------------------------------------------------------------------------- /list_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/list_queue_test.go -------------------------------------------------------------------------------- /queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/queue.go -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyricTian/queue/HEAD/worker.go --------------------------------------------------------------------------------