[−][src]Struct actix_rt::System
System is a runtime manager.
Methods
impl System
[src]
pub fn builder() -> Builder
[src]
Build a new system with a customized tokio runtime.
This allows to customize the runtime. See struct level docs on
Builder
for more information.
pub fn new<T: Into<String>>(name: T) -> SystemRunner
[src]
Create new system.
This method panics if it can not create tokio runtime
pub fn run_in_tokio<T: Into<String>>(
name: T,
local: &LocalSet
) -> impl Future<Output = Result<()>>
[src]
name: T,
local: &LocalSet
) -> impl Future<Output = Result<()>>
Create new system using provided tokio Handle.
This method panics if it can not spawn system arbiter
pub fn current() -> System
[src]
Get current running system.
pub fn is_set() -> bool
[src]
Check if current system is set, i.e., as already been started.
pub fn with_current<F, R>(f: F) -> R where
F: FnOnce(&System) -> R,
[src]
F: FnOnce(&System) -> R,
Execute function with system reference.
pub fn id(&self) -> usize
[src]
System id
pub fn stop(&self)
[src]
Stop the system
pub fn stop_with_code(&self, code: i32)
[src]
Stop the system with a particular exit code.
pub fn stop_on_panic(&self) -> bool
[src]
Return status of 'stop_on_panic' option which controls whether the System is stopped when an uncaught panic is thrown from a worker thread.
pub fn arbiter(&self) -> &Arbiter
[src]
System arbiter
pub fn run<F>(f: F) -> Result<()> where
F: FnOnce() + 'static,
[src]
F: FnOnce() + 'static,
This function will start tokio runtime and will finish once the
System::stop()
message get called.
Function f
get called within tokio runtime context.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for System
impl Send for System
impl Sync for System
impl Unpin for System
impl !UnwindSafe for System
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,