The fastest and most modular actor system that doesn’t force you to pay for what you don’t need
Examples can be found here.
- Simplified creation of a tokio actor topic oriented actor
- Minimum boilerplate code
- Support different tokio channels including
watch
,broadcast
,oneshot
,mpsc
. - Each actor is able to listen up to 30 channels.
- Added support of actors with single real channel and routing messages to the defined handler
Example: Single channel - Added tick (actor call each n seconds/millis/etc) support
Example: Interval - Implemented Dependency Injection on pre-start stage to solve cross-references problem ("Actor#1" needs a reference to the "Actor#2", and "Actor#2" needs a reference to "Actor#1")
Example: dependency injection - Integration with tokio/tracing, including tracing of actor lifecycle, messages, and handlers
- Implemented support for actors for which it is necessary to work with multiple message sources (channels) Example: Multi channel
- Implemented shared state for actors Example: Shared state
- Actix
- Ractor
- Tokactor
- tiny-tokio-actor
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uActor by you, shall be licensed as MIT, without any additional terms or conditions.