-
Updated
Oct 11, 2021 - Cython
#
async-await
Here are 1,246 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
Aug 3, 2021
harmic
commented
Oct 13, 2021
With this code:
let file_name = Path::new("/tmp/does_not_exist/test");
match fs::File::create(file_name) {
Ok(_) => (),
Err(e) => {
println!("Sync: Error opening file {}: {}", file_name.display(), e);
}
};
async_std::task::block_on(async {
match async_std::fs::File::create(file_name).await {
Ok(_) => (),
Err(e) => {
println!("Async: Error opening fil
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
Async await wrapper for easy error handling without try-catch
-
Updated
Oct 7, 2021 - TypeScript
nodejs
javascript
api
bootstrap
redis
aws
boilerplate
koa
framework
react-native
mvc
mongodb
mongoose
s3
prettier
passport
ava
xo
cloudfront
async-await
-
Updated
Feb 14, 2021 - 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
Oct 12, 2021 - C++
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
Oct 15, 2021 - C#
Cheatsheet for promises and async/await.
-
Updated
Oct 31, 2018 - HTML
A GraphQL server library implemented in Rust
-
Updated
Oct 16, 2021 - Rust
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
EA Async implements async-await methods in the JVM.
-
Updated
Jun 25, 2021 - Java
asyncio historical repository
-
Updated
Apr 28, 2021
-
Updated
Sep 27, 2021 - Swift
mysql
express
node
html5
es6
css3
socket-io
vuex
webpack2
axios
vue2
vue-router
koa2
async-await
es7
es8
-
Updated
Aug 11, 2021 - Vue
-
Updated
Sep 20, 2021 - TypeScript
A functional, lightweight alternative to bluebird.js, built with async / await in mind.
-
Updated
Oct 31, 2018 - JavaScript
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
Oct 11, 2021 - Swift
Map over promises concurrently
nodejs
javascript
promises
async
mapper
promise
iteration
concurrency
parallel
async-functions
await
async-await
pmap
-
Updated
Oct 5, 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
Sep 22, 2021 - JavaScript
Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all
cpp
scheduler
coroutines
concurrency
tasks
multithreading
concurrent-programming
asynchronous-programming
threading
await
async-await
task-scheduler
thread-safety
timers
executor-service
coroutine
threadpool
cpp20
executors
-
Updated
Oct 15, 2021 - C++
High level asynchronous concurrency and networking framework that works on top of either trio or asyncio
-
Updated
Oct 16, 2021 - Python
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
Aug 10, 2021 - JavaScript
Composable async primitives with cancelation, control over scheduling, and coroutines. Superior replacement for JS Promises.
-
Updated
May 7, 2021 - JavaScript
A small and magical composer for all JavaScript asynchronous.
-
Updated
Aug 10, 2021 - JavaScript
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript.
-
Updated
Oct 14, 2021 - TypeScript
aiomonitor is module that adds monitor and python REPL capabilities for asyncio application
-
Updated
Oct 18, 2021 - Python
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