Coder Social home page Coder Social logo

Support for spawn_blocking about async-scoped HOT 5 CLOSED

rmanoka avatar rmanoka commented on July 20, 2024
Support for spawn_blocking

from async-scoped.

Comments (5)

rmanoka avatar rmanoka commented on July 20, 2024

Could you explain your requirement a bit more? I see a spawn_blocking function in the tokio and async-std executors, but they seem to take a function, not a future. An example usage of the new feature would be very nice.

from async-scoped.

kodieg avatar kodieg commented on July 20, 2024

I wanted to spawn_blocking task but without requirement of 'static closure, something similar to scoped thread, but run on blocking thread pool. I didn't think really deeply if there is anything inherently wrong with this idea.

I had in mind something like that:

let a = 42;
unsafe {
    let s = scope(|s| {
        // closure is not static, so I cannot use  
        s.spawn_blocking(|| some_blocking_fn(&a));
    });
   // do some more work
   s.await
}

It is unsafe obviously because if not awaited it is UB, but I think if awaited, then this should be safe?

Actually I'm not sure if this would do what I really need, i.e. that it would spawn task immediately and not on s.await point. Maybe there is other solution to my problem that you know of?

from async-scoped.

rmanoka avatar rmanoka commented on July 20, 2024

@kodieg Got it. I've tried adding this support for tokio. Can you check it out?

It should work with async-std too, but I couldn't upgrade to latest async-std due to some compile error.

Edit: it also works with async-std. I must've missed something trivial.

from async-scoped.

kodieg avatar kodieg commented on July 20, 2024

Sorry for long reply! This looks great! I tested it on tokio rt and worked fine for me!

from async-scoped.

rmanoka avatar rmanoka commented on July 20, 2024

release 0.7.1

from async-scoped.

Related Issues (18)

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.