#async-executor #run-time #block-on #minimal

pollster

Synchronously block the thread until a future completes

8 releases

0.3.0 Feb 7, 2023
0.2.5 Jan 18, 2022
0.2.4 Apr 23, 2021
0.2.2 Mar 18, 2021
0.1.0 Apr 7, 2020

#19 in Asynchronous

Download history 34792/week @ 2023-11-23 34994/week @ 2023-11-30 37638/week @ 2023-12-07 29959/week @ 2023-12-14 20890/week @ 2023-12-21 21818/week @ 2023-12-28 35222/week @ 2024-01-04 31349/week @ 2024-01-11 42024/week @ 2024-01-18 123497/week @ 2024-01-25 61540/week @ 2024-02-01 40685/week @ 2024-02-08 45341/week @ 2024-02-15 46294/week @ 2024-02-22 47140/week @ 2024-02-29 30920/week @ 2024-03-07

176,638 downloads per month
Used in 425 crates (199 directly)

Apache-2.0/MIT

10KB
77 lines

Pollster

Pollster is an incredibly minimal async executor for Rust that lets you block a thread until a future completes.

Cargo Documentation License actions-badge

use pollster::FutureExt as _;

let my_fut = async {};

let result = my_fut.block_on();

That's it. That's all it does. Nothing more, nothing less. No need to pull in 50 crates to evaluate a future.

Why is this useful?

Now that async functions are stable, we're increasingly seeing libraries all over the Rust ecosystem expose async APIs. This is great for those wanting to build highly concurrent web applications!

However, many of us are not building highly concurrent web applications, but end up faced with an async function that we can't easily call from synchronous code. If you're in this position, then pollster is for you: it allows you to evaluate a future in-place without spinning up a heavyweight runtime like tokio or async_std.

Minimalism

Pollster is built with the UNIX ethos in mind: do one thing, and do it well. It has no dependencies, compiles quickly, and is composed of only ~100 lines of well-audited code.

Behaviour

Pollster will synchronously block the thread until a future completes. It will not spin: instead, it will place the thread into a waiting state until the future has been polled to completion.

Compatibility

Unfortunately, pollster will not work for all futures because some require a specific runtime or reactor. See here for more information about when and where pollster may be used. However, if you're already pulling in the required dependencies to create such a future in the first place, it's likely that you already have a version of block_on in your dependency tree that's designed to poll your future, so use that instead.

Macro

When using the macro crate feature, an attribute-macro can be used to mark async fn main():

#[pollster::main]
async fn main() {
    let my_fut = async {};

    my_fut.await;
}

Additionally if you have re-exported the crate with a different name then pollster, you have to specify it:

#[pollster::main(crate = "renamed-pollster")]
async fn main() {
    let my_fut = async {};

    my_fut.await;
}

You can also use #[pollster::test] for tests.

Dependencies

~210KB