4 stable releases
1.1.1 | Jun 10, 2019 |
---|---|
1.1.0 | May 12, 2019 |
1.0.1 | Apr 4, 2019 |
#1 in #stopped
Used in mooncell
19KB
282 lines
srvzio - an helpful crate to implement services
Services? What services?
This crate is inspired by my admiration and attachment to Google's Guava library for Java. Especially the Services.
A Service
is then something that I would define as
an entity that, when started it does work, and when stopped it does not. Awfully vague, isn't it? OK, here is the
definition from the Guava wiki page on the topic:
The Service represents an object with an operational state, with methods to start and stop. For example, webservers, RPC servers, and timers can [be] Services[s].Managing the state of services like these, which require proper startup and shutdown management, can be nontrivial, especially if multiple threads or scheduling is involved.
srvzio aims to provide a rustic version of this. But, because of the enormous differences between Java and Rust, we will start small, with few and simple abstractions, and then will hopefully grow the crate over time (maybe with your contributions?).
Building blocks
Service
: a Trait representing an object that can be started and can be stoppedServiceStatusFlag
: a type designed to represent the internal state of aService
implementationServiceManager
: a composite of concreteService
s
License
Dependencies
~2–9MB
~81K SLoC