pub struct IoPool<T> { /* private fields */ }
Expand description
An single-threaded task pool backed by IO backend T
.
Implementations§
Source§impl<T: IoBackend + Default> IoPool<T>
impl<T: IoBackend + Default> IoPool<T>
Sourcepub fn run_with<F, R>(f: F) -> Rwhere
F: AsyncFnOnce(IoDriver<T>) -> R,
pub fn run_with<F, R>(f: F) -> Rwhere
F: AsyncFnOnce(IoDriver<T>) -> R,
Creates and runs a task pool, seeding it with an initial future
f(driver)
, until all tasks have completed.
Sourcepub fn spawn_on_thread(name: impl Into<String>) -> (JoinHandle<()>, IoDriver<T>)where
T: 'static,
pub fn spawn_on_thread(name: impl Into<String>) -> (JoinHandle<()>, IoDriver<T>)where
T: 'static,
Creates a new pool and runs it on a newly spawned thread with the given name. Returns the thread handle and the pool’s driver.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for IoPool<T>
impl<T> !RefUnwindSafe for IoPool<T>
impl<T> Send for IoPool<T>
impl<T> Sync for IoPool<T>
impl<T> !Unpin for IoPool<T>
impl<T> !UnwindSafe for IoPool<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more