Struct tokio::executor::current_thread::CurrentThread [] [src]

pub struct CurrentThread<P: Park = ParkThread> { /* fields omitted */ }

Executes tasks on the current thread

Methods

impl CurrentThread<ParkThread>
[src]

[src]

Create a new instance of CurrentThread.

impl<P: Park> CurrentThread<P>
[src]

[src]

Create a new instance of CurrentThread backed by the given park handle.

[src]

Returns true if the executor is currently idle.

An idle executor is defined by not currently having any spawned tasks.

Important traits for &'a mut W
[src]

Spawn the future on the executor.

This internally queues the future to be executed once run is called.

[src]

Synchronously waits for the provided future to complete.

This function can be used to synchronously block the current thread until the provided future has resolved either successfully or with an error. The result of the future is then returned from this function call.

Note that this function will also execute any spawned futures on the current thread, but will not block until these other spawned futures have completed.

The caller is responsible for ensuring that other spawned futures complete execution.

[src]

Run the executor to completion, blocking the thread until all spawned futures have completed.

[src]

Run the executor to completion, blocking the thread until all spawned futures have completed or duration time has elapsed.

[src]

Perform a single iteration of the event loop

[src]

Bind CurrentThread instance with an execution context.

Trait Implementations

impl Executor for CurrentThread
[src]

[src]

Spawns a future object to run on this executor. Read more

[src]

Provides a best effort hint to whether or not spawn will succeed. Read more

impl<P: Park> Debug for CurrentThread<P>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<P = ParkThread> !Send for CurrentThread<P>

impl<P = ParkThread> !Sync for CurrentThread<P>