Code Monkey home page Code Monkey logo

Comments (1)

taiki-e avatar taiki-e commented on June 9, 2024

The following v0.1 example is

use async_executor::{LocalExecutor, Task};

let local_ex = LocalExecutor::new();

local_ex.run(async {
    let task = Task::local(async { 1 + 2 });
    assert_eq!(task.await, 3);
});

almost equivalent to the following in v1:

use async_executor::LocalExecutor;
use futures_lite::future;

let local_ex = LocalExecutor::new();

future::block_on(local_ex.run(async {
    let task = local_ex.spawn(async { 1 + 2 });
    assert_eq!(task.await, 3);
}));

If you want a similar API to v0.1, you can use a helper something like this:

use async_executor::LocalExecutor;

let local_ex = LocalExecutor::new();

helper::run_local(async {
    let task = helper::spawn_local(async { 1 + 2 });
    assert_eq!(task.await, 3);
});

mod helper {
    use async_executor::{LocalExecutor, Task};
    use scoped_tls::scoped_thread_local;

    scoped_thread_local!(static LOCAL_EX: LocalExecutor);
    
    pub fn run_local<T>(local_ex: &LocalExecutor, future: impl std::future::Future<Output = T>) -> T {
        LOCAL_EX.set(local_ex, || {
            futures_lite::future::block_on(local_ex.run(f))
        })
    }

    pub fn spawn_local<T>(future: impl std::future::Future<Output = T>) -> Task<T> {
        if LOCAL_EX.is_set() {
            LOCAL_EX.with(|local_ex| local_ex.spawn(future))
        } else {
            panic!("`spawn_local()` must be called from a `LocalExecutor`")
        }
    }
}

Note that in 0.1 LocalExecutor::run + Task::local and similar API like above, you can easily write code like can cause a deadlock due to recursive block-on.

refs: a28a964

from async-executor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.