GithubHelp home page GithubHelp logo

zsaladin / asyncoroutine Goto Github PK

View Code? Open in Web Editor NEW
131.0 131.0 18.0 99 KB

Asyncoroutine is a unity asset that allows you to use Coroutine and async/await together.

License: MIT License

C# 100.00%

asyncoroutine's People

Contributors

zsaladin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

asyncoroutine's Issues

"UnityEngine.AsyncOperation not awaitable"

Hello, I'm having an issue awaiting the AsyncOperation from UnityWebRequest:

var req = new UnityWebRequest(someUrl);
await req.Send();

Is there a way to await a UnityEngine.AsyncOperation object?

Thanks!
(And thanks for this project, its pretty handy!)

Is this repo maintained?

First off, I like that project, very helpful. But I am wondering if this is actively maintained? I am asking because an issue is waiting for a response for over a year.

Task as coroutine just give us waiting after few tries

Hi, I am using your library for executing async tasks in Editor. It's running as a coroutine on an on-demand instantiated game object with static getter. First, I'm using the UnityWebRequest to send a request and wait for a response, which works fine. But then if I try to run a long-running task in the background, like parsing the response which can take up to a second, first few tasks run ok, but the for no reason the task is suddenly not registering that it completed until I interact with an editor.

In the example, getRequest is resolved UnityWebRequest. The MessagePaskSerializer.Deserializer call is the long-running task that I want to run non-blocking.

var data = getRequest.downloadHandler.data;
var parseResponseTask = Task.Run(() => MessagePackSerializer.Deserialize<PostResponseModel>(data)).AsCoroutine();
yield return parseResponseTask;
response = parseResponseTask.Result;

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.