pub struct Executor { /* private fields */ }
Expand description

A collection of threads for executing tasks and blocking jobs.

The methods of this struct are defined on &Arc<Executor>.

Implementations

Creates a new executor with 4 async threads and 4 blocking threads.

Panics

Panics when it fails to start the threads.

Creates a new executor.

num_async_threads is the number of threads to use for executing async tasks.

num_blocking_threads is the number of threads to use for executing blocking jobs like connecting TCP sockets and reading files.

You probably want to use default instead of this.

Errors

Returns an error when a parameter is invalid or it fails to start threads.

Creates a new executor with thread names prefixed with name.

For example, with_name("api_async", 4, "api_blocking", 100) creates 4 threads named "api_async0" through "api_async3" and 100 threads named "api_blocking0" through "api_blocking99".

Errors

Returns an error when a parameter is invalid or it fails to start threads.

Schedules func to run on any available thread in the blocking thread pool.

Returns immediately.

Use the returned receiver to get the result of func. If func panics, the receiver returns RecvError.

Puts func in a Box before adding it to the thread pool queue.

Adds a task that will execute fut.

The task runs on any available worker thread. The task runs until fut completes or the Executor is dropped.

Returns immediately.

Uses std::boxed::Box::pin to make the future Unpin. You can use spawn_unpin to avoid this allocation.

Example:

let executor = safina_executor::Executor::default();
executor.spawn(async move {
    an_async_fn().await.unwrap();
});

Adds a task that will execute fut.

The task runs on any available worker thread. The task runs until fut completes or the Executor is dropped.

Returns immediately.

Note that fut must be Unpin. You can use std::boxed::Box::pin to make it Unpin. The spawn function does this for you. Or use pin_utils::pin_mut to do it with unsafe code that does not allocate memory.

Executes the future on the current thread and returns its result.

fut can call spawn to create tasks. Those tasks run on the executor and will continue even after fut completes and this call returns.

Uses std::boxed::Box::pin to make the future Unpin. You can use block_on_unpin to avoid this allocation.

Panics

Panics if the future panics.

Example
let executor = safina_executor::Executor::default();
let result = executor.block_on(async {
    prepare_request().await?;
    execute_request().await
})?;

Executes the future on the current thread and returns its result.

fut can call spawn to create tasks. Those tasks run on the executor and will continue even after fut completes and this call returns.

Note that fut must be Unpin. You can use std::boxed::Box::pin to make it Unpin. The block_on function does this for you. Or use pin_utils::pin_mut to do it with unsafe code that does not allocate memory.

Panics

Panics if the future panics.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.