asynchronous.md

July 15, 2021 · View on GitHub

Bookmarks tagged [asynchronous]

www.codever.land/bookmarks/t/asynchronous

Tokio home page

https://tokio.rs/

Tokio is an asynchronous runtime for the Rust programming language. It provides the building blocks needed for writing network applications. It gives the flexibility to target a wide range of systems,...


async/await in Angular ngOnInit

https://stackoverflow.com/questions/56092083/async-await-in-angular-ngoninit

It is no different than what you had before. ngOnInit will return a Promise and the caller will ignore that promise. This means that the caller will not wait for everything in your method to finish ...


Don't Block the Event Loop (or the Worker Pool) | Node.js

https://nodejs.org/ru/docs/guides/dont-block-the-event-loop/

Should you read this guide?

If you're writing anything more complicated than a brief command-line script, reading this should help you write higher-performance, more-secure applications.

This do...


libuv home page

https://libuv.org/

libuv, a platform abstraction library with focus on asynchronous i/o.


Asio

https://github.com/chriskohlhoff/asio/

A cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. [Boost] [website](http://think-async.c...


C++ Actor Framework

https://github.com/actor-framework/actor-framework

An Open Source Implementation of the Actor Model in C++. [BSD-3-Clause] website


libev

http://libev.schmorp.de/

A full-featured and high-performance event loop that is loosely modelled after libevent, but without its limitations and bugs. [BSD and GPL]


libevent

http://libevent.org/

An event notification library. [BSD]


libuv

https://github.com/libuv/libuv

Cross-platform asynchronous I/O. [BSD]


uvw

https://github.com/skypjack/uvw

C++ wrapper for libuv. [MIT]


dpc/mioco

https://github.com/dpc/mioco

Scalable, coroutine-based, asynchronous IO handling library [Travis CI Build Status](https://travis-ci.org/dpc/mi...


TeaEntityLab/fpRust

https://github.com/TeaEntityLab/fpRust

Monad/MonadIO, Handler, Coroutine/doNotation, Functional Programming features for Rust [Travis CI Build Status](https:...


rust-lang-nursery/futures-rs

https://github.com/rust-lang-nursery/futures-rs

Zero-cost futures in Rust Travis CI Build Status


mio

https://github.com/tokio-rs/mio

MIO is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions [](https://t...


Xudong-Huang/may

https://github.com/Xudong-Huang/may

rust stackful coroutine library


rustasync/runtime

https://github.com/rustasync/runtime

A runtime agnostic API designed to make async feel like its part of stdlib Crates.io [![Build stat...


Handling Observables with NgIf and the Async Pipe

https://ultimatecourses.com/blog/angular-ngif-async-pipe

Dealing with async operations with the async pipe takes care of subscribing to Observable streams/async stuff like Promises for us.

There are a few common gotchas when dealing with purely cold Observ...


Awaitility

https://github.com/jayway/awaitility

DSL for synchronizing asynchronous operations.


ConcurrentUnit

https://github.com/jhalterman/concurrentunit

Toolkit for testing multi-threaded and asynchronous applications.


GreenMail

http://www.icegreen.com/greenmail

In-memory email server for integration testing. Supports SMTP, POP3 and IMAP including SSL.


Hoverfly Java

https://github.com/SpectoLabs/hoverfly-java

Native bindings for Hoverfly, a proxy which allows you to simulate HTTP services.


REST Assured

https://github.com/jayway/rest-assured

DSL for easy testing of REST/HTTP services.


Java 8: Definitive guide to CompletableFuture

https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html

Examples of using and combining CompletableFuture API


java.util.concurrent - Java Concurrency Utilities

http://tutorials.jenkov.com/java-util-concurrent/index.html

In this tutorial I will take you through the new java.util.concurrent classes, one by one, so you can learn how to use them. I will use the versions in Java 6. I am not sure if there are any differenc...


Asynchronous REST Services with JAX-RS and CompletableFuture · allegro.tech

https://allegro.tech/2014/10/async-rest.html

One of new features introduced by JAX-RS 2.0 is asynchronous processing in Server and Client APIs. We use these APIs together with CompletableFutur...


@Asynchronous does not work from inside the same EJB

https://www.whitebyte.info/programming/java/asynchronous-does-not-work-from-inside-the-same-ejb

The @Asynchronous annotation does not work from inside the same EJB. The solution is to use a separate EJB that wraps the async Method.


Guide To CompletableFuture | Baeldung

http://www.baeldung.com/java-completablefuture

Quick and practical guide to Java 8's CompletableFuture.


Java 8 CompletableFuture Tutorial | CalliCoder

https://www.callicoder.com/java-8-completablefuture-tutorial/

In this tutorial you'll learn what CompletableFuture is and how to use CompletableFuture for asynchronous programming in Java.


libuv | Cross-platform asynchronous I/O

http://libuv.org/

libuv, a platform abstraction library with focus on asynchronous i/o.


Building Microservices: Inter-Process Communication

https://www.nginx.com/blog/building-microservices-inter-process-communication/

Learn the pros and cons of the different technologies you can choose for inter-process communication in your microservices-based application