Skip to content

Latest commit

 

History

History
214 lines (180 loc) · 12.9 KB

asynchronous.md

File metadata and controls

214 lines (180 loc) · 12.9 KB

Bookmarks tagged [asynchronous]

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,...


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 ...


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...


https://libuv.org/

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


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...


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

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


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]


http://libevent.org/

An event notification library. [BSD]


https://github.com/libuv/libuv

Cross-platform asynchronous I/O. [BSD]


https://github.com/skypjack/uvw

C++ wrapper for libuv. [MIT]


https://github.com/dpc/mioco

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


https://github.com/TeaEntityLab/fpRust

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


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

Zero-cost futures in Rust Travis CI Build Status


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...


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

rust stackful coroutine library


https://github.com/rustasync/runtime

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


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...


https://github.com/jayway/awaitility

DSL for synchronizing asynchronous operations.


https://github.com/jhalterman/concurrentunit

Toolkit for testing multi-threaded and asynchronous applications.


http://www.icegreen.com/greenmail

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


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

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


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

DSL for easy testing of REST/HTTP services.


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

Examples of using and combining CompletableFuture API


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...


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...


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.


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

Quick and practical guide to Java 8's CompletableFuture.


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.


http://libuv.org/

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


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