Bookmarks tagged [asynchronous]
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,...
- tags: rust, asynchronous, runtime
- source code
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 ...
- 📆 published on: 2019-05-11
- tags: angular, typescript, asynchronous, promise, observable
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...
- tags: node.js, event-loop, asynchronous, performance
libuv, a platform abstraction library with focus on asynchronous i/o.
- tags: asynchronous, libuv, event-loop
- source code
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...
- tags: cpp, asynchronous, event-loop
- source code
https://github.com/actor-framework/actor-framework
An Open Source Implementation of the Actor Model in C++. [BSD-3-Clause] website
- tags: cpp, asynchronous, event-loop
- source code
A full-featured and high-performance event loop that is loosely modelled after libevent, but without its limitations and bugs. [BSD and GPL]
- tags: cpp, asynchronous, event-loop
An event notification library. [BSD]
- tags: cpp, asynchronous, event-loop
https://github.com/libuv/libuv
Cross-platform asynchronous I/O. [BSD]
- tags: cpp, asynchronous, event-loop
- source code
https://github.com/skypjack/uvw
C++ wrapper for libuv. [MIT]
- tags: cpp, asynchronous, event-loop
- source code
Scalable, coroutine-based, asynchronous IO handling library [](https://travis-ci.org/dpc/mi...
- tags: rust, asynchronous
- source code
https://github.com/TeaEntityLab/fpRust
Monad/MonadIO, Handler, Coroutine/doNotation, Functional Programming features for Rust [](https:...
- tags: rust, asynchronous
- source code
https://github.com/rust-lang-nursery/futures-rs
- tags: rust, asynchronous
- source code
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...
- tags: rust, asynchronous
- source code
https://github.com/Xudong-Huang/may
rust stackful coroutine library
- tags: rust, asynchronous
- source code
https://github.com/rustasync/runtime
A runtime agnostic API designed to make async feel like its part of stdlib [![Build stat...
- tags: rust, asynchronous
- source code
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...
- 📆 published on: 2018-07-18
- tags: angular, async, asynchronous, observable
https://github.com/jayway/awaitility
DSL for synchronizing asynchronous operations.
- tags: java, testing, asynchronous
- source code
https://github.com/jhalterman/concurrentunit
Toolkit for testing multi-threaded and asynchronous applications.
- tags: java, testing, asynchronous
- source code
http://www.icegreen.com/greenmail
In-memory email server for integration testing. Supports SMTP, POP3 and IMAP including SSL.
- tags: java, testing, asynchronous
https://github.com/SpectoLabs/hoverfly-java
Native bindings for Hoverfly, a proxy which allows you to simulate HTTP services.
- tags: java, testing, asynchronous
- source code
https://github.com/jayway/rest-assured
DSL for easy testing of REST/HTTP services.
- tags: java, testing, asynchronous
- source code
https://www.nurkiewicz.com/2013/05/java-8-definitive-guide-to.html
Examples of using and combining CompletableFuture
API
- 📆 published on: 2013-05-09
- tags: java, asynchronous, async
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...
- tags: java, concurrency, asynchronous
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...
- 📆 published on: 2014-10-29
- tags: rest, java, javaee, asynchronous
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.
- tags: javaee, ejb, asynchronous, async
http://www.baeldung.com/java-completablefuture
Quick and practical guide to Java 8's CompletableFuture.
- 📆 published on: 2017-09-23
- tags: java, asynchronous
- source code
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.
- 📆 published on: 2017-07-18
- tags: java, asynchronous
libuv, a platform abstraction library with focus on asynchronous i/o.
- tags: asynchronous, node.js
- source code
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
- tags: microservices, asynchronous, architecture