Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prembhaskal/go_scheduler
yet another scheduler library in go
https://github.com/prembhaskal/go_scheduler
scheduler-library
Last synced: about 14 hours ago
JSON representation
yet another scheduler library in go
- Host: GitHub
- URL: https://github.com/prembhaskal/go_scheduler
- Owner: prembhaskal
- License: mit
- Created: 2020-11-21T13:32:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-19T13:37:05.000Z (about 3 years ago)
- Last Synced: 2024-06-20T12:49:10.996Z (5 months ago)
- Topics: scheduler-library
- Language: Go
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go_scheduler
yet another scheduler library in go## Scheduler
type `goscheduler.Scheduler` can schedule a given `goscheduler.Task` periodically. In addition scheduler can be restarted once it is stopped, which is useful in some scenarios.
API is as follows:
`NewScheduler()` to create the scheduler instance
`Start()` to start the scheduler
`Stop()` to stop the scheduler## LockFreeScheduler
`goscheduler.LockFreeScheduler`...### test
run the test using make command.
```
make test
```