Ultra fast asyncio event loop.
-
Updated
Oct 13, 2020 - Python
{{ message }}
Ultra fast asyncio event loop.
Promise packages, patterns, chat, and tutorials
futures-preview = { version = "0.3.0-alpha.19", features = [ "async-await" ] } in Cargo.toml as recommended in §3.1.use futures::channel::mpsc; // 1
use futures::sink::SinkExt;
use std::sync::Arc;
type Sender<T> = mpsc::UnboundedSender<T>; // 2
type Receiver<T> =
Cheatsheet for promises and async/await.
Async await wrapper for easy error handling without try-catch
Asynchronous flow control (promises, generators, observables, CSP, etc)
Async/await first CQRS+ES and DDD framework for .NET
A library of C++ coroutine abstractions for the coroutines TS
StarHackIt: React/Native/Node fullstack starter kit with authentication and authorisation, data backed by SQL.
A GraphQL server library implemented in Rust
EA Async implements async-await methods in the JVM.
asyncio historical repository
A functional, lightweight alternative to bluebird.js, built with async / await in mind.
Swift coroutines for iOS, macOS and Linux.
Map over promises concurrently
Reduce CPU usage by non-blocking async loop and psychologically speed up in JavaScript
Composable async primitives (futures) with cancelation, control over scheduling, and coroutines
A small and magical composer for all JavaScript asynchronous.
This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API). Demo of frontend in VueJS here: https://github.com/davellanedam/vue-skeleton-mvp
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript.
aiomonitor is module that adds monitor and python REPL capabilities for asyncio application
Asynchronous Programming in JavaScript
demo for rust asynchronous io: from mio to stackless coroutine
Add a description, image, and links to the async-await topic page so that developers can more easily learn about it.
To associate your repository with the async-await topic, visit your repo's landing page and select "manage topics."
What should happen if deliver_cancel raises an exception? In the current implementation, the shielded cancel scope will prevent it from propagating until the process exits, which might take a while if the crash occurred before signaling the process in any way. Maybe on exception from a user-specified deliver_cancel we should call the default deliver_cancel to kill the process? Or just kill() since