Skip to main content

LocalDomain

Struct LocalDomain 

Source
pub struct LocalDomain { /* private fields */ }
Expand description

A thread-affine executor driven explicitly by the thread that creates it.

The Rc marker deliberately makes this type !Send + !Sync. In particular, a LocalExecutor runnable is never sent through the cross-thread inbox.

Implementations§

Source§

impl LocalDomain

Source

pub fn new() -> Self

Creates a new domain bound to the current host thread.

Source

pub fn spawner(&self) -> LocalSpawner

Returns a cross-thread capability that accepts Send futures only.

Source

pub fn spawn_local<F, T>(&self, future: F) -> Result<Task<T>, SpawnError>
where F: Future<Output = T> + 'static, T: 'static,

Spawns a future that is allowed to borrow only this local thread’s affinity.

§Errors

Returns SpawnError::Closed after this domain begins shutting down.

§Panics

Panics if the internal lifecycle mutex was poisoned by an earlier panic.

Source

pub fn is_empty(&self) -> bool

Returns whether the domain currently has no accepted, queued, or runnable work.

Source

pub fn try_tick(&self) -> bool

Processes a pending remote command or one scheduled local runnable.

Source

pub fn run_n(&self, max_steps: usize) -> usize

Performs at most max_steps non-blocking drive steps.

Returns the number of steps that made progress. A step has the same scheduling semantics as Self::try_tick; it is not a completed-task count. Passing zero does not poll work.

Source

pub fn run_for(&self, budget: Duration) -> RunStats

Drives ready work without blocking until the soft time budget expires.

The clock is checked before every drive step. Rust futures cannot be preempted during a single poll, so one slow poll may make elapsed exceed budget. A zero budget does not poll work.

Source

pub async fn tick(&self)

Waits until a remote command or local runnable can make progress.

Source

pub async fn run<F: Future>(&self, future: F) -> F::Output

Drives this domain until future completes.

Source

pub async fn shutdown_graceful(self)

Rejects new work and drives accepted tasks to completion.

Source

pub async fn shutdown_until<D>(self, deadline: D) -> ShutdownOutcome
where D: Future,

Gracefully drains until deadline resolves, then cancels remaining work.

The deadline future is supplied by the host, so this executor does not require or drive a particular timer or I/O reactor.

Source

pub fn shutdown_now(self)

Rejects new work and drops the executor’s remaining local tasks.

Trait Implementations§

Source§

impl Default for LocalDomain

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Drop for LocalDomain

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.