├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── config.json ├── main.go └── tasks │ └── tasks.go └── gores ├── config.go ├── constants.go ├── debug.go ├── debug_test.go ├── dispatcher.go ├── gores.go ├── gores_test.go ├── job.go ├── job_test.go ├── scheduler.go ├── scheduler_test.go ├── stat.go ├── worker.go └── worker_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/README.md -------------------------------------------------------------------------------- /examples/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/examples/config.json -------------------------------------------------------------------------------- /examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/examples/main.go -------------------------------------------------------------------------------- /examples/tasks/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/examples/tasks/tasks.go -------------------------------------------------------------------------------- /gores/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/config.go -------------------------------------------------------------------------------- /gores/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/constants.go -------------------------------------------------------------------------------- /gores/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/debug.go -------------------------------------------------------------------------------- /gores/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/debug_test.go -------------------------------------------------------------------------------- /gores/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/dispatcher.go -------------------------------------------------------------------------------- /gores/gores.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/gores.go -------------------------------------------------------------------------------- /gores/gores_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/gores_test.go -------------------------------------------------------------------------------- /gores/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/job.go -------------------------------------------------------------------------------- /gores/job_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/job_test.go -------------------------------------------------------------------------------- /gores/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/scheduler.go -------------------------------------------------------------------------------- /gores/scheduler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/scheduler_test.go -------------------------------------------------------------------------------- /gores/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/stat.go -------------------------------------------------------------------------------- /gores/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/worker.go -------------------------------------------------------------------------------- /gores/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wang502/gores/HEAD/gores/worker_test.go --------------------------------------------------------------------------------