Skip to main content

TokioExecutor

Struct TokioExecutor 

Source
pub struct TokioExecutor<R, WE>
where R: Puller, WE: Send + Unpin + 'static,
{ /* private fields */ }
Expand description

A built-in Executor implementation based on tokio tasks.

Each worker is a tokio::spawn-ed task that pulls chunks from the puller, sends them to the write queue, and steals new work via TaskQueue.

The executor outlives the workers — DownloadResult::set_threads uses it to grow the pool mid-session — so it must not own anything that keeps a finished session alive. It therefore reaches the session’s channels through a WeakTx: once every worker is gone the upgrade fails and no further worker can be spawned.

Trait Implementations§

Source§

impl<R, WE> Executor for TokioExecutor<R, WE>
where R: Puller, WE: Send + Unpin + 'static,

Source§

type Handle = TokioHandle

Source§

fn execute( &self, task: Task, task_queue: TaskQueue<Self::Handle>, ) -> Self::Handle

Spawns a worker that processes task and, once exhausted, refills it via TaskQueue::steal. Read more

Auto Trait Implementations§

§

impl<R, WE> !Freeze for TokioExecutor<R, WE>

§

impl<R, WE> !RefUnwindSafe for TokioExecutor<R, WE>

§

impl<R, WE> !UnwindSafe for TokioExecutor<R, WE>

§

impl<R, WE> Send for TokioExecutor<R, WE>
where WeakTx<FlavorWrap<List<Event<<R as Puller>::Error, WE>>, RegistryDummy, RegistryMulti>>: Send,

§

impl<R, WE> Sync for TokioExecutor<R, WE>
where WeakTx<FlavorWrap<List<Event<<R as Puller>::Error, WE>>, RegistryDummy, RegistryMulti>>: Sync,

§

impl<R, WE> Unpin for TokioExecutor<R, WE>
where WeakTx<FlavorWrap<List<Event<<R as Puller>::Error, WE>>, RegistryDummy, RegistryMulti>>: Unpin, R: Unpin,

§

impl<R, WE> UnsafeUnpin for TokioExecutor<R, WE>
where WeakTx<FlavorWrap<List<Event<<R as Puller>::Error, WE>>, RegistryDummy, RegistryMulti>>: UnsafeUnpin, R: UnsafeUnpin,

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, 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.