-
Updated
Feb 4, 2021 - Python
#
async-await
Here are 1,035 public repositories matching this topic...
Ultra fast asyncio event loop.
Promise packages, patterns, chat, and tutorials
nodejs
javascript
polyfill
promises
list
awesome
async
promise
delay
unicorns
iteration
concurrency
promise-library
resources
async-functions
series
bluebird
awesome-list
ponyfill
async-await
fulfillment
promise-queue
promise-modules
promise-chain
promise-rejection
rejection-reason
promise-patterns
-
Updated
Jan 24, 2021
Ppjet6
commented
Nov 10, 2019
Steps to reproduce
futures-preview = { version = "0.3.0-alpha.19", features = [ "async-await" ] }inCargo.tomlas recommended in §3.1.- Try to build the example in https://book.async.rs/tutorial/sending_messages.html
use futures::channel::mpsc; // 1
use futures::sink::SinkExt;
use std::sync::Arc;
type Sender<T> = mpsc::UnboundedSender<T>; // 2
type Receiver<T> =
mfvargo
commented
Jan 22, 2021
We had an issue where an api user was using the incorrect parameters on an API call. Having this feature would have made the API fail instead of proceeding. The bug would been found earlier.
I can see where this would be a hassle on many cases, But it would be nice for new projects.
I suppose it could be a global config item that could be overridden at the individual action level:
For
nodejs
javascript
api
bootstrap
redis
aws
boilerplate
koa
framework
react-native
mvc
mongodb
mongoose
s3
prettier
passport
ava
xo
cloudfront
async-await
-
Updated
Feb 1, 2021 - JavaScript
Async await wrapper for easy error handling without try-catch
-
Updated
Jan 10, 2021 - TypeScript
Cheatsheet for promises and async/await.
-
Updated
Oct 31, 2018 - HTML
Async/await first CQRS+ES and DDD framework for .NET
c-sharp
elasticsearch
events
framework
cqrs
sagas
rabbitmq
dotnet
nuget
ddd
eventstore
domain-driven-design
netstandard
async-await
eventsourcing
cqrs-es
-
Updated
Jan 25, 2021 - C#
Asynchronous flow control (promises, generators, observables, CSP, etc)
javascript
csp
promises
library
async
streams
async-programming
flow-control
observables
async-await
generators
-
Updated
Mar 4, 2020 - JavaScript
A library of C++ coroutine abstractions for the coroutines TS
windows
linux
cplusplus
cpp
async
coroutines
clang
asyncio
asynchronous-programming
async-await
msvc
coroutines-ts
-
Updated
Jan 3, 2021 - C++
A GraphQL server library implemented in Rust
-
Updated
Jan 30, 2021 - Rust
StarHackIt: React/Native/Node fullstack starter kit with authentication and authorisation, data backed by SQL.
-
Updated
Jan 15, 2021 - JavaScript
EA Async implements async-await methods in the JVM.
-
Updated
Dec 9, 2020 - Java
asyncio historical repository
-
Updated
Jul 30, 2019
-
Updated
May 15, 2020 - Swift
mysql
express
node
html5
es6
css3
socket-io
vuex
webpack2
axios
vue2
vue-router
koa2
async-await
es7
es8
-
Updated
Jan 21, 2021 - Vue
A functional, lightweight alternative to bluebird.js, built with async / await in mind.
-
Updated
Oct 31, 2018 - JavaScript
-
Updated
Feb 1, 2021 - TypeScript
Swift coroutines for iOS, macOS and Linux.
macos
linux
swift
ios
promises
async
asynchronous
atomic
scheduler
coroutines
thread
dispatch
multithreading
await
lock-free
async-await
futures
combine
coroutine
structured-concurrency
-
Updated
Feb 1, 2021 - Swift
Map over promises concurrently
nodejs
javascript
promises
async
mapper
promise
iteration
concurrency
parallel
async-functions
await
async-await
pmap
-
Updated
Jan 23, 2021 - JavaScript
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
nodejs
javascript
testing
api
redis
front-end
jwt
express
node
rest
mocha
mongodb
eslint
mongoose
mvp
chai
postman
token
async-await
jwt-authentication
-
Updated
Jan 23, 2021 - JavaScript
Reduce CPU usage by non-blocking async loop and psychologically speed up in JavaScript
javascript
performance
acceleration
cpu
async
optimization
async-functions
async-await
user-experience
non-blocking
speedup
lightweight-javascript-library
cpu-usage
cpu-utilization
cpu-load
-
Updated
Jan 13, 2021 - JavaScript
Composable async primitives (futures) with cancelation, control over scheduling, and coroutines
-
Updated
Oct 29, 2019 - JavaScript
A small and magical composer for all JavaScript asynchronous.
-
Updated
Jul 16, 2020 - JavaScript
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript.
-
Updated
Oct 31, 2020 - TypeScript
aiomonitor is module that adds monitor and python REPL capabilities for asyncio application
-
Updated
Feb 1, 2021 - Python
Asynchronous Programming in JavaScript
-
Updated
Jun 4, 2017 - JavaScript
Improve this page
Add a description, image, and links to the async-await topic page so that developers can more easily learn about it.
Add this topic to your repo
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