pub struct Rt { /* private fields */ }Implementations§
Source§impl Rt
impl Rt
pub fn create(config: Mm1NodeConfig) -> Result<Self, RtCreateError>
pub fn with_actor_failure_sink( self, tx_actor_failure: UnboundedSender<(Address, AnyError)>, ) -> Self
pub fn with_tap(self, key: impl Into<String>, tap: Arc<dyn MessageTap>) -> Self
Sourcepub fn run(
&self,
main_actor: BoxedRunnable<ActorContext>,
) -> Result<(), RtRunError>
pub fn run( &self, main_actor: BoxedRunnable<ActorContext>, ) -> Result<(), RtRunError>
Runs the main actor, then makes a bounded, best-effort attempt to stop actors started during this run.
Tokio task cancellation is cooperative. Actor code that blocks a runtime thread or does not yield may keep running and retain resources after this method returns.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Rt
impl !RefUnwindSafe for Rt
impl !UnwindSafe for Rt
impl Send for Rt
impl Sync for Rt
impl Unpin for Rt
impl UnsafeUnpin for Rt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more