asynchronous-programming
Here are 312 public repositories matching this topic...
-
Updated
May 23, 2020 - Swift
-
Updated
Jun 9, 2020 - C++
- Explain
|syntax - Write more about services and clients and when you might return what errors. Have some examples.
- Make it more clear that service implementations must be
Clone/Send/'static- Add to the readme
- Add to the macro documentation if it's not there
- Warn of the dangers of mixing
FutureServicewithSyncClient- Namely, if the client runs on
bug in README.md when_all_ready() example:
task<> example2()
{
...
// Unpack and handle each result individually once they're all complete.
for (int i = 0; i < 1000; ++i)
{
try
{
>>> std::string& record = tasks[i].result();
should be
std::string& record = resultTasks[i].result();
...
}
Hi Dan
I’m curious about callbacks when the procedure is cancelled or finished with an error. So what is the best practice to handle all events once the job is done?
I always did something like this (os_log is a placeholder, treat it as UI updates):
let job = MyAsyncProcedure()
job.addDidC-
Updated
Jul 17, 2019 - JavaScript
Some patterns should be avoided when writing programs with P# (especially as some of them can break our controlled testing infrastructure). We should make sure to document these.
The descriptions for these sub-projects are missing descriptions in both the root README.md as well as their respective readme files
-
Updated
Feb 24, 2020 - Clojure
-
Updated
Nov 1, 2019 - JavaScript
-
Updated
Nov 14, 2018 - Scala
-
Updated
Feb 18, 2020 - C#
-
Updated
Dec 10, 2019 - Dart
-
Updated
Mar 19, 2020 - Java
I've disabled chronos on OSX from important_packages in nim-lang/Nim#13954 because CI for chronos fails on OSX:
https://dev.azure.com/nim-lang/255dfe86-e590-40bb-a8a2-3c0295ebdeb1/_apis/build/builds/4234/logs/76
2020-04-11T13:10:46.5530120Z �[1m�[31mFAIL: �[36mhttps://github.com/status-im/nim-chronos C�[0m
2020-04-11T13:10:46.5530940Z �[1m�[36mTest "https://gi
-
Updated
Sep 17, 2019 - Python
-
Updated
Jun 5, 2020 - C++
-
Updated
Sep 8, 2019 - Java
-
Updated
May 13, 2020 - C
-
Updated
Mar 1, 2018 - Python
-
Updated
Jun 22, 2019 - Apex
-
Updated
Oct 17, 2019 - Pascal
-
Updated
Jun 26, 2019 - Kotlin
-
Updated
Dec 12, 2017 - Java
-
Updated
Jun 4, 2020 - JavaScript
-
Updated
Jan 27, 2015 - C
-
Updated
Jun 9, 2020 - Python
-
Updated
Feb 28, 2019 - JavaScript
Improve this page
Add a description, image, and links to the asynchronous-programming topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the asynchronous-programming topic, visit your repo's landing page and select "manage topics."
ZTransducer is an effectful chunk processing function, and thus forms an arrow. We should add the following combinators on it:
(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, (B, C)]racing:looks problematic to implement currently(ZTransducer[A, B], ZTransducer[A, C]) => ZTransducer[A, Either[B, C]]