//! A worker that follows the Actor Model.
use RefCell;
use Rc;
pub use WorkerBridge;
pub use HandlerId;
pub use WorkerRegistrar;
pub use ;
pub use WorkerSpawner;
pub use Worker;
/// Alias for `Rc<RefCell<T>>`
type Shared<T> = ;
/// Alias for `Rc<dyn Fn(IN)>`
type Callback<IN> = ;