Skip to content

Simple mimic of async/await for those come from C# world, now you can Cancel(), Wait() on a go routine.

License

Notifications You must be signed in to change notification settings

Azure/go-asynctask

Repository files navigation

AsyncTask

Build Go Report Card GoDoc Codecov

Simple mimik of async/await for those come from C# world, so you don't need to dealing with waitGroup/channel in golang.

also the result is strongTyped with go generics, no type assertion is needed.

few chaining method provided:

  • ContinueWith: send task1's output to task2 as input, return reference to task2.
  • AfterBoth : send output of taskA, taskB to taskC as input, return reference to taskC.
  • WaitAll: all of the task have to finish to end the wait (with an option to fail early if any task failed)
  • WaitAny: any of the task finish would end the wait
    // start task
    task := asynctask.Start(ctx, countingTask)
    
    // do something else
    somethingelse()
    
    // get the result
    rawResult, err := task.Wait()
    // or
    task.Cancel()

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

About

Simple mimic of async/await for those come from C# world, now you can Cancel(), Wait() on a go routine.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages