Expand description
§actm - A tiny actors framework
actm provides a minimal, but quite usable, platform for implementing the actor
pattern.
Re-exports§
pub use async_trait;pub use enum_dispatch;pub use flume;
Modules§
- executor
- Abstraction over various executors that actors can run on
- prelude
- Commonly used types from this library
- traits
- Traits used by the
EventModule - types
- Types used by the event interface
- util
- Utility types and wrappers for working with events
Macros§
- async_
actor - Generate an
AsyncActortype-saftey wrapper. - sync_
actor - Generate an
SyncActortype-saftey wrapper. - wrapped_
event - Automatically generate an
Eventimplementing wrapper for a type