pub struct Builder<'a> { /* private fields */ }
tokio_unstable
and crate feature tracing
only.Expand description
Factory which is used to configure the properties of a new task.
Note: This is an unstable API. The public API of this type may break in 1.x releases. See the documentation on unstable features for details.
Methods can be chained in order to configure it.
Currently, there is only one configuration option:
name
, which specifies an associated name for the task
There are three types of task that can be spawned from a Builder:
spawn_local
for executing futures on the current threadspawn
for executingSend
futures on the runtimespawn_blocking
for executing blocking code in the blocking thread pool.
§Example
use tokio::net::{TcpListener, TcpStream};
use std::io;
async fn process(socket: TcpStream) {
// ...
}
#[tokio::main]
async fn main() -> io::Result<()> {
let listener = TcpListener::bind("127.0.0.1:8080").await?;
loop {
let (socket, _) = listener.accept().await?;
tokio::task::Builder::new()
.name("tcp connection handler")
.spawn(async move {
// Process each socket concurrently.
process(socket).await
})?;
}
}
Implementations§
Source§impl<'a> Builder<'a>
impl<'a> Builder<'a>
Sourcepub fn spawn<Fut>(self, future: Fut) -> Result<JoinHandle<Fut::Output>>
pub fn spawn<Fut>(self, future: Fut) -> Result<JoinHandle<Fut::Output>>
Spawns a task with this builder’s settings on the current runtime.
§Panics
This method panics if called outside of a Tokio runtime.
See task::spawn
for
more details.
Sourcepub fn spawn_on<Fut>(
self,
future: Fut,
handle: &Handle,
) -> Result<JoinHandle<Fut::Output>>
pub fn spawn_on<Fut>( self, future: Fut, handle: &Handle, ) -> Result<JoinHandle<Fut::Output>>
Spawn a task with this builder’s settings on the provided runtime handle.
See Handle::spawn
for more details.
Sourcepub fn spawn_local<Fut>(self, future: Fut) -> Result<JoinHandle<Fut::Output>>
pub fn spawn_local<Fut>(self, future: Fut) -> Result<JoinHandle<Fut::Output>>
Spawns !Send
a task on the current LocalSet
with this builder’s
settings.
The spawned future will be run on the same thread that called spawn_local
.
This may only be called from the context of a local task set.
§Panics
This function panics if called outside of a local task set.
See task::spawn_local
for more details.
Sourcepub fn spawn_local_on<Fut>(
self,
future: Fut,
local_set: &LocalSet,
) -> Result<JoinHandle<Fut::Output>>
pub fn spawn_local_on<Fut>( self, future: Fut, local_set: &LocalSet, ) -> Result<JoinHandle<Fut::Output>>
Spawns !Send
a task on the provided LocalSet
with this builder’s
settings.
See LocalSet::spawn_local
for more details.
Sourcepub fn spawn_blocking<Function, Output>(
self,
function: Function,
) -> Result<JoinHandle<Output>>
pub fn spawn_blocking<Function, Output>( self, function: Function, ) -> Result<JoinHandle<Output>>
Spawns blocking code on the blocking threadpool.
§Panics
This method panics if called outside of a Tokio runtime.
See task::spawn_blocking
for more details.
Sourcepub fn spawn_blocking_on<Function, Output>(
self,
function: Function,
handle: &Handle,
) -> Result<JoinHandle<Output>>
pub fn spawn_blocking_on<Function, Output>( self, function: Function, handle: &Handle, ) -> Result<JoinHandle<Output>>
Spawns blocking code on the provided runtime handle’s blocking threadpool.
See Handle::spawn_blocking
for more details.