Data Concurrency - Promise

Data System Architecture

About

A promise is a concurrency design pattern where shared state is not required.

It's the basic building block of any asynchronous model.

A Future represents the result of a promise is called generally a future

Documentation/Reference





Discover More
Data System Architecture
Asynchronous - Future

A Future represents the result of an asynchronous computation (generally a promise) java/util/concurrent/Future
Data System Architecture
Conccurency - Asynchronous Model

Asynchronous allows an application to issue multiple requests and continue executing while the server performs the request. This type of request can improve an application’s throughput because it allows...
Data System Architecture
Concurrency - Model (Design)

list of asynchronous (concurrent/parallel) design producer-consumer, messaging, promise / future
Java Conceptuel Diagram
Java Concurrency - Model

Which concurrency model should you use in @Java? Threads, Actors, Executors, Fork Join, Fibers?
Javascript Es Promise State
Javascript - Promise Function

in the Javascript context A promise is a function that encapsulate a executor function in order to: execute it asynchronously and returns its result (ie ) A promise is one way of enabling asynchrony...
Java Conceptuel Diagram
Vert.x - Promise/Future

promise and future in Vert.x Do not confuse futures with promises. futures represent the “read-side” of an asynchronous result, promises represent the “write-side”. They allow you to defer...



Share this page:
Follow us:
Task Runner