crystal-preside
Preside
Crystal language shard which provides simple abstract classes for services that can start/stop/restart, and supervisors which can start/stop/restart a list of managed services.
┌──────────┐ ┌───────┐ ┌────────┐ ┌───────┐
│TERMINATED│◄───┤STOPPED├───►│STARTING├───►│STARTED│
└──────────┘ └───────┘ └───┬────┘ └───────┘
▲ │ │
│ ▼ │
│ ┌────────┐ │
└────────┤STOPPING│◄───────┘
└────────┘
Installation
-
Add the dependency to your
shard.yml
:dependencies: preside: github: lachlan/crystal-preside
-
Run
shards install
Usage
require "preside"
class Service < Preside::Service
# implement specific steps to start the service
protected def startup : Nil
# ...
end
# implement run loop logic
protected def run : Nil
while started?
# do something
snooze
end
end
# implement specific steps to stop the service
protected def shutdown : Nil
# ...
end
end
class Supervisor < Preside::Supervisor
def init
@services << Service.new
end
end
supervisor = Supervisor.new
supervisor.start # starts self and all managed services
supervisor.await # waits for self and all managed services to terminate
Contributing
- Fork it (https://github.com/lachlan/crystal-preside/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Lachlan Dowding - creator and maintainer
Repository
crystal-preside
Owner
Statistic
- 0
- 0
- 0
- 0
- 0
- 15 days ago
- March 11, 2025
License
MIT License
Links
Synced at
Thu, 03 Apr 2025 22:58:37 GMT
Languages