Tyractorsaur
is a cross platform Typed Actor System Written in Rust.
It is NOT
production ready.
Tyractorsaur
is in very early development steps. The core functionality of creating actors, sending, receiving messages as well as waiting for the System to stop are already implemented.
There are two ways to configure Tyractorsaur
- environment variables in the form of TYRACTORSAUR_CONFIG_<KEY>
i.e. TYRACTORSAUR_CONFIG_NAME=custom
- creating the configuration as mutable and overwriting the values in your code
rust
let mut actor_config = TyractorsaurConfig::new().unwrap();
actor_config.actor.name = String::from("custom-name");
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.