[−][src]Struct tokio_current_thread::CurrentThread
Executes tasks on the current thread
Methods
impl CurrentThread<ParkThread>
[src]
impl CurrentThread<ParkThread>
impl<P: Park> CurrentThread<P>
[src]
impl<P: Park> CurrentThread<P>
pub fn new_with_park(park: P) -> Self
[src]
pub fn new_with_park(park: P) -> Self
Create a new instance of CurrentThread
backed by the given park
handle.
pub fn is_idle(&self) -> bool
[src]
pub fn is_idle(&self) -> bool
Returns true
if the executor is currently idle.
An idle executor is defined by not currently having any spawned tasks.
Note that this method is inherently racy -- if a future is spawned from a remote Handle
,
this method may return true
even though there are more futures to be executed.
pub fn spawn<F>(&mut self, future: F) -> &mut Self where
F: Future<Item = (), Error = ()> + 'static,
[src]
pub fn spawn<F>(&mut self, future: F) -> &mut Self where
F: Future<Item = (), Error = ()> + 'static,
Spawn the future on the executor.
This internally queues the future to be executed once run
is called.
pub fn block_on<F>(
&mut self,
future: F
) -> Result<F::Item, BlockError<F::Error>> where
F: Future,
[src]
pub fn block_on<F>(
&mut self,
future: F
) -> Result<F::Item, BlockError<F::Error>> where
F: Future,
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.
pub fn run(&mut self) -> Result<(), RunError>
[src]
pub fn run(&mut self) -> Result<(), RunError>
Run the executor to completion, blocking the thread until all spawned futures have completed.
pub fn run_timeout(&mut self, duration: Duration) -> Result<(), RunTimeoutError>
[src]
pub fn run_timeout(&mut self, duration: Duration) -> Result<(), RunTimeoutError>
Run the executor to completion, blocking the thread until all
spawned futures have completed or duration
time has elapsed.
pub fn turn(&mut self, duration: Option<Duration>) -> Result<Turn, TurnError>
[src]
pub fn turn(&mut self, duration: Option<Duration>) -> Result<Turn, TurnError>
Perform a single iteration of the event loop.
This function blocks the current thread even if the executor is idle.
pub fn enter<'a>(&'a mut self, enter: &'a mut Enter) -> Entered<'a, P>
[src]
pub fn enter<'a>(&'a mut self, enter: &'a mut Enter) -> Entered<'a, P>
Bind CurrentThread
instance with an execution context.
pub fn get_park(&self) -> &P
[src]
pub fn get_park(&self) -> &P
Returns a reference to the underlying Park
instance.
pub fn get_park_mut(&mut self) -> &mut P
[src]
pub fn get_park_mut(&mut self) -> &mut P
Returns a mutable reference to the underlying Park
instance.
pub fn handle(&self) -> Handle
[src]
pub fn handle(&self) -> Handle
Get a new handle to spawn futures on the executor
Different to the executor itself, the handle can be sent to different threads and can be used to spawn futures on the executor.
Trait Implementations
impl<P: Park> Drop for CurrentThread<P>
[src]
impl<P: Park> Drop for CurrentThread<P>
impl<P: Park> Debug for CurrentThread<P>
[src]
impl<P: Park> Debug for CurrentThread<P>
fn fmt(&self, fmt: &mut Formatter) -> Result
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Executor for CurrentThread
[src]
impl Executor for CurrentThread
Auto Trait Implementations
impl<P = ParkThread> !Send for CurrentThread<P>
impl<P = ParkThread> !Send for CurrentThread<P>
impl<P = ParkThread> !Sync for CurrentThread<P>
impl<P = ParkThread> !Sync for CurrentThread<P>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more