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
Event
Module - types
- Types used by the event interface
- util
- Utility types and wrappers for working with events
Macros§
- async_
actor - Generate an
AsyncActor
type-saftey wrapper. - sync_
actor - Generate an
SyncActor
type-saftey wrapper. - wrapped_
event - Automatically generate an
Event
implementing wrapper for a type