Use case 1: Serial execution of HTTP calls
Let's say you're building a user interface which depends on two REST services. One provide a list of news article items, while the other is an image hosting service which return image binaries from URL's. The first service returns URL's which are to be used as input for the second service. This makes second operation dependent on the first - they have to be executed serially:
Use case 2: Parallel execution, wait for all
This time the user interface is composed of data from two independent services. You want to display a blank screen with a progress bar only while loading. Only when all data is fetched, you start rendering. This is what I dub the form-merge parallel execution:
Use case 3: Parallel execution, take first
In this case you're firing multiple HTTP queries to identical services, but only care for the response from the first to reply. It might be that you're building a performance-critical application, or you have multiple 3rd-party providers delivering the same service but with varying degree of reliability.
Implementation
Below is listed short examples illustrating the three patterns in the different languages, with support functions in the first chapter. For Java I've chosen to use the RxJava framework simply because that's what I know best. If you know how to do the same with plain Java (8), please let me know or contribute with a pull request to the repo!Support functions
// Resolves the input value after 300ms
function getSlowPromise(returnValue) {
return new Promise((resolve) => {
setTimeout(() => {
resolve(returnValue);
}, 300);
});
}
// Returns input string after 250ms
public static async Task<string> GetSlowStringTask(String toReturn)
{
await Task.Delay(250);
return toReturn;
}
// Returns input int after 250ms
public static async Task<int> GetSlowIntTask(int toReturn)
{
await Task.Delay(250);
return toReturn;
}
suspend fun getSlowStringJob(s: String) : String {
delay(250)
return s
}
suspend fun getSlowIntJob(i: Int) : Int {
delay(250)
return i
}
// Returns the deferred job which completes first
suspend fun <T> awaitFirst(jobs : Array<Deferred<T>>) : Deferred<T> {
var doneJob : Deferred<T>? = null
while (doneJob == null) {
for (job in jobs) {
if (job.isCompleted) {
doneJob = job
break;
}
yield()
}
}
return doneJob
}
Pipeline / Serial execution
// createPromise is a method returning a promise which resolves to the input value
getSlowPromise('job1')
.then((result) => {
return getSlowPromise(result + '-job2');
}).then((result) => {
return getSlowPromise(result + '-job3');
}).then((result) => {
// Result from third job
});
Observable<String> obs1 = Observable.just("Hello world");
obs1.flatMap(s -> {
Observable<Integer> obs2 = Observable.just(s.length());
return obs2;
}).flatMap(i -> {
Observable<String> obs3 = Observable.just("Length: " + i);
return obs3;
}).subscribe(s ->{
System.out.println(s);
// Will output "Length: 11"
});
var str = await GetSlowStringTask("Hello world");
var len = await GetSlowIntTask(str.Length);
var res = await GetSlowStringTask("Len: " + len);
Console.Out.WriteLine(res);
launch(CommonPool) {
val res1 = getSlowStringJob("Hello")
val res2 = getSlowIntJob(res1.length)
val res3 = getSlowStringJob("First string length: " + res2)
System.out.println(res3)
}
Parallel fork-join
// Assuming promise1, 2 and 3 are created
// before this code executing
Promise.all([
promise1,
promise2,
promise3
]).then((results) => {
// 'results' is array of results from each promise
})
// obs1, 2 and 3 are Observable<String>'s
// Assuming each observable only emits 1 value
obs1.mergeWith(obs2)
.mergeWith(obs3)
.buffer(3)
.subscribe(resultArray -> {
// resultArray is String[3]
});
var tasks = new Task<int>[3];
tasks[0] = GetSlowIntTask(1);
tasks[1] = GetSlowIntTask(2);
tasks[2] = GetSlowIntTask(3);
Task.WaitAll(tasks);
for (int i = 0; i < 3; i++)
{
Console.Out.WriteLine("Res " + i + ": " + tasks[i].Result);
}
val job1 = async(CommonPool) { getSlowIntJob(1) }
val job2 = async(CommonPool) { getSlowIntJob(2) }
val job3 = async(CommonPool) { getSlowIntJob(3) }
launch(CommonPool) {
val sum = job1.await() + job2.await() + job3.await()
System.out.println("Sum: " + sum)
}
Parallel take first
Promise.race([
promise1,
promise2,
promise3
]).then((result) => {
// result is first to return
})
// obs1, 2 and 3 are Observable<String>'s
// Assuming each observable only emits 1 value
obs1.mergeWith(obs2)
.mergeWith(obs3)
.first()
.subscribe(result -> {
// result is String
});
var tasks = new Task<int>[3];
tasks[0] = GetSlowIntTask(1);
tasks[1] = GetSlowIntTask(2);
tasks[2] = GetSlowIntTask(3);
int firstResult = Task.WaitAny(tasks);
Console.Out.WriteLine("Res " + firstResult);
val job1 = async(CommonPool) { getSlowIntJob(1) }
val job2 = async(CommonPool) { getSlowIntJob(2) }
val job3 = async(CommonPool) { getSlowIntJob(3) }
launch(CommonPool) {
val jobs = arrayOf(job1, job2, job3)
val first = awaitFirst(jobs)
System.out.println("Finished first: " + first.getCompleted())
}
Thanks to Espen Volden for contributing with Javascript examples
Article updated 18 Feb 2017 with Kotlin 1.1 Coroutines examples
Great Article
ReplyDeletebig data projects for cse final year students
Java Training in Chennai
Final Year Projects for CSE
Java Training in Chennai
ReplyDeleteشركة نقل عفش
اهم شركات مكافحة حشرات بالخبر كذلك معرض اهم شركة مكافحة حشرات بالدمام والخبر والجبيل والخبر والاحساء والقطيف كذلك شركة رش حشرات بالدمام ومكافحة الحشرات بالخبر
شركة مكافحة حشرات بالدمام
شركة تنظيف خزانات بجدة الجوهرة من افضل شركات تنظيف الخزانات بجدة حيث ان تنظيف خزانات بجدة يحتاج الى مهارة فى كيفية غسيل وتنظيف الخزانات الكبيرة والصغيرة بجدة على ايدى متخصصين فى تنظيف الخزانات بجدة
شركة تنظيف خزانات بجدة
شركة كشف تسربات المياه بالدمام
شركة نقل عفش واثاث
ReplyDeleteشركة نقل عفش بالرياض وجدة والدمام والخبر والجبيل اولقطيف والاحساء والرياض وجدة ومكة المدينة المنورة والخرج والطائف وخميس مشيط وبجدة افضل شركة نقل عفش بجدة نعرضها مجموعة الفا لنقل العفش بمكة والخرج والقصيم والطائف وتبوك وخميس مشيط ونجران وجيزان وبريدة والمدينة المنورة وينبع افضل شركات نقل الاثاث بالجبيل والطائف وخميس مشيط وبريدة وعنيزو وابها ونجران المدينة وينبع تبوك والقصيم الخرج حفر الباطن والظهران
شركة نقل عفش بجدة
شركة نقل عفش بالمدينة المنورة
شركة نقل اثاث بالرياض
شركة نقل عفش بالدمام
Well, this post is quite good
ReplyDeleteGarage Door Repair Ontario
Thanks and keep up the good work
ReplyDeletegarage door repair Calgary
Garage Door Repair Penn Hills
ReplyDeleteאם כי אני לא מסכים עם כל מה שנכתב, מאמר מעניין
ReplyDeleteרכב במימון מלא ללא מקדמה
מעניין מאוד, למרות שלא הכל מדויק לדעתי
ReplyDeleteכלבים
commercial garage door repair mississauga
ReplyDeleteCan you please provide more information on this subject? BTW your blog is great. Cheers.
ReplyDeletegarage door opener repair pittsburgh
I just came across to reading your blog it serve very useful information about the interiors thank you.
ReplyDeletedishwasher repair mississauga
wonderful Blog
ReplyDeletegarage door repair chestermere
Very informative post.
ReplyDeleteเว็บพนัน UFABET
Nice blog
ReplyDeleteประวัติดาราในตำนาน
Your article is contain off interesting information. Nice job.
ReplyDeletegarage door repair east edmonton
You got a really useful blog I have been here reading for about half an hour. I am a newbie and your post is valuable for me.
ReplyDeletegarage door repair
Ideas! i think no need of any ideas just get to gather and start having fun, chit chat and other activities.
ReplyDeletegarage door repair Calgary
Lovely pictures, awesome these are looking so funny interesting but professional and artistic pics.
ReplyDeletegarage door repair
Whatsapp Number Call us Now! 01537587949
ReplyDeleteplease visit us: Seo service
sex video: phone home buttons repair Canton
pone video usa: Mobile Phone Repair
pone video usa: Courier Companies In USA
Thanks for sharing nice information with us. i like your post and all you share with us is up to date and quite informative, i would like to bookmark the page so i can come here again to read you, as you have done a wonderful job.lice removal service
ReplyDeleteThanks for sharing nice information with us. i like your post and all you share with us is up to date and quite informative, i would like to bookmark the page so i can come here again to read you, as you have done a wonderful job.We buy houses Pittsburgh
ReplyDeletewhat a great style, it not easy job well don.
ReplyDeletegarage door repair
Can you please provide more information on this subject? BTW your blog is great. Cheers.
ReplyDeletegarage door repair Pickering
אני לא מסכים עם כל מה שכתוב, אבל מאמר מעניין מאוד
ReplyDeleteחברת ניקיון בצפון
Really appreciate this wonderful post
ReplyDeleteFinance news
I definitely appreciate your blog. Excellent work!
ReplyDeleteסמפל אטרקציות לאירועים
You got a really useful blog I have been here reading for about half an hour. I am a newbie and your post is valuable for me.
ReplyDeletegarage door cable repair
Nice content
ReplyDeletegarage door repair brantford
מרתק כמה שלא הבנתי כלום עד שקראתי את המאמר הנפלא הזה
ReplyDeleteפיתוח אפליקציות Gapps
So lucky to come across your excellent blog. Your blog brings me a great deal of fun. Good luck with the site.
ReplyDeletegarage door repair brantford
It's always exciting to read articles from other writers and practice something from their websites.
ReplyDeletegarage door springs north dallas
Excellent article. The writing style which you have used in this article is very good and it made the article of better quality.
ReplyDeleteDoor replacement
I was exactly searching for. Thanks for such a post and please keep it up. commercial garage door repair philadelphia
ReplyDeleteI like this post, And I figure that they have a great time to peruse this post, they might take a decent site to make an information, thanks for sharing it with me.
ReplyDeletescreen door replacement
what a great style, it not easy job well don.
ReplyDeletegarage door cable repair
I was exactly searching for. Thanks for such a post and please keep it up. garage door repair round rock
ReplyDeletewow that is so interesting and it's a great art. thanks
ReplyDeletecommercial garage door repair
wow lovely cake. looks so delicious.
ReplyDeleteHVAC Cleveland Pros
what a great style, it not easy job well don.
ReplyDeletekitchen remodeling northside
wow she is so gorgeous, nice pics.
ReplyDeleteinvesting scam
A useful post shared.
ReplyDeletestratford management scam
wow she is so gorgeous, nice pics.
ReplyDeleteAppliance Repairs
rastgele görüntülü konuşma - kredi hesaplama - instagram video indir - instagram takipçi satın al - instagram takipçi satın al - tiktok takipçi satın al - instagram takipçi satın al - instagram beğeni satın al - instagram takipçi satın al - instagram takipçi satın al - instagram takipçi satın al - instagram takipçi satın al - binance güvenilir mi - binance güvenilir mi - binance güvenilir mi - binance güvenilir mi - instagram beğeni satın al - instagram beğeni satın al - polen filtresi - google haritalara yer ekleme - btcturk güvenilir mi - binance hesap açma - kuşadası kiralık villa - tiktok izlenme satın al - instagram takipçi satın al - sms onay - paribu sahibi - binance sahibi - btcturk sahibi - paribu ne zaman kuruldu - binance ne zaman kuruldu - btcturk ne zaman kuruldu - youtube izlenme satın al - torrent oyun - google haritalara yer ekleme - altyapısız internet - bedava internet - no deposit bonus forex - erkek spor ayakkabı - webturkey.net - karfiltre.com - tiktok jeton hilesi - tiktok beğeni satın al - microsoft word indir - misli indir
ReplyDeletewow that is so interesting and it's a great art. thanks
ReplyDeleteStorm Damage Repair
This is my first-time visit to your blog and I am very interested in the articles that you serve. Provide enough knowledge for me.
ReplyDeletewealth management
אני לא מסכים עם כל מה שכתוב, אבל מאמר מעניין מאוד
ReplyDeleteרעות מלכין איפור קבוע
Wow that would be great party. i love get together with friends and family it greats time we pass with them.
ReplyDeleteGarage Door 4 Business
This is a wonderful article, Given so much info in it, These type of articles keeps the user's interest in the website. mobile locksmith
ReplyDeleteIt’s really great post, nice blog..I would like to appreciate your work and would like to tell to my friends.
ReplyDeleteEtobicoke Auto Locksmith
youtube abone satın al
ReplyDeletetrendyol indirim kodu
cami avizesi
cami avizeleri
avize cami
no deposit bonus forex 2021
takipçi satın al
takipçi satın al
takipçi satın al
takipcialdim.com/tiktok-takipci-satin-al/
instagram beğeni satın al
instagram beğeni satın al
btcturk
tiktok izlenme satın al
sms onay
youtube izlenme satın al
no deposit bonus forex 2021
tiktok jeton hilesi
tiktok beğeni satın al
binance
takipçi satın al
uc satın al
sms onay
sms onay
tiktok takipçi satın al
tiktok beğeni satın al
twitter takipçi satın al
trend topic satın al
youtube abone satın al
instagram beğeni satın al
tiktok beğeni satın al
twitter takipçi satın al
trend topic satın al
youtube abone satın al
takipcialdim.com/instagram-begeni-satin-al/
perde modelleri
instagram takipçi satın al
instagram takipçi satın al
takipçi satın al
instagram takipçi satın al
betboo
marsbahis
sultanbet
instagram takipçi satın al
ReplyDeleteucuz takipçi
takipçi satın al
https://takipcikenti.com
https://ucsatinal.org
instagram takipçi satın al
https://perdemodelleri.org
https://yazanadam.com
instagram takipçi satın al
balon perdeler
petek üstü perde
mutfak tül modelleri
kısa perde modelleri
fon perde modelleri
tül perde modelleri
https://atakanmedya.com
https://fatihmedya.com
https://smmpaketleri.com
https://takipcialdim.com
https://yazanadam.com
yasaklı sitelere giriş
aşk kitapları
yabancı şarkılar
sigorta sorgula
https://cozumlec.com
word indir ücretsiz
tiktok jeton hilesi
rastgele görüntülü sohbet
fitness moves
gym workouts
https://marsbahiscasino.org
http://4mcafee.com
http://paydayloansonlineare.com
beğeni satın al
ReplyDeleteinstagram takipçi satın al
ucuz takipçi
takipçi satın al
https://takipcikenti.com
https://ucsatinal.org
instagram takipçi satın al
https://perdemodelleri.org
https://yazanadam.com
instagram takipçi satın al
balon perdeler
petek üstü perde
mutfak tül modelleri
kısa perde modelleri
fon perde modelleri
tül perde modelleri
https://atakanmedya.com
https://fatihmedya.com
https://smmpaketleri.com
https://takipcialdim.com
https://yazanadam.com
yasaklı sitelere giriş
aşk kitapları
yabancı şarkılar
sigorta sorgula
https://cozumlec.com
word indir ücretsiz
tiktok jeton hilesi
rastgele görüntülü sohbet
erkek spor ayakkabı
fitness moves
gym workouts
https://marsbahiscasino.org
http://4mcafee.com
http://paydayloansonlineare.com
ReplyDeleteA round of applause for your mind blowing article. Much thanks to you, Fantastic.
hitachi inverter ac
swrv coin hangi borsada
ReplyDeleterose coin hangi borsada
ray coin hangi borsada
cover coin hangi borsada
xec coin hangi borsada
tiktok jeton hilesi
tiktok jeton hilesi
tiktok jeton hilesi
tiktok jeton hilesi
tiktok jeton hilesi
ReplyDeletetiktok jeton hilesi
referans kimliği nedir
gate güvenilir mi
tiktok jeton hilesi
paribu
btcturk
bitcoin nasıl alınır
yurtdışı kargo
I like this post, And I figure that they have a great time to peruse this post, they might take a decent site to make an information, thanks for sharing it with me.
ReplyDeletehttps://www.truelegacyhomes.com/estate-sales/poway-ca/
seo fiyatları
ReplyDeletesaç ekimi
dedektör
instagram takipçi satın al
ankara evden eve nakliyat
fantezi iç giyim
sosyal medya yönetimi
mobil ödeme bozdurma
kripto para nasıl alınır
instagram beğeni satın al
ReplyDeleteyurtdışı kargo
seo fiyatları
saç ekimi
dedektör
fantazi iç giyim
sosyal medya yönetimi
farmasi üyelik
mobil ödeme bozdurma
bitcoin nasıl alınır
ReplyDeletetiktok jeton hilesi
youtube abone satın al
gate io güvenilir mi
binance referans kimliği nedir
tiktok takipçi satın al
bitcoin nasıl alınır
mobil ödeme bozdurma
mobil ödeme bozdurma
TÜL PERDE MODELLERİ
ReplyDeletesms onay
mobil ödeme bozdurma
nft nasıl alınır
ANKARA EVDEN EVE NAKLİYAT
Trafik Sigortasi
dedektör
web sitesi kurma
ASK KİTAPLARİ
smm panel
ReplyDeletesmm panel
iş ilanları blog
İnstagram Takipçi Satın Al
hirdavatciburada.com
Www.beyazesyateknikservisi.com.tr
Servis
jeton hilesi indir
pendik mitsubishi klima servisi
ReplyDeletemaltepe bosch klima servisi
kadıköy arçelik klima servisi
kartal samsung klima servisi
ümraniye samsung klima servisi
kartal mitsubishi klima servisi
ümraniye mitsubishi klima servisi
tuzla vestel klima servisi
tuzla bosch klima servisi
Creative Marketers BD is a team of skilled digital marketers for offering quality SEO, Content Writing and Graphics Design, and Web Development works. We are providing Digital Marketing Services both for companies and individuals.
ReplyDeleteAre you Looking for cost effective SEO Company in Bangladesh? So you are the right place to start! With Creative Marketers BD, get the best responsive website design for your online business. We are here to help your business to be a success! We can expand your business through reaching to the right audience.
To expand your business locally or globally, Creative Marketers BD is the perfect choice for you. If you want to grow your business with the help of effective digital marketing works, Creative Marketers BD is available to assist you wholeheartedly.
bostansepeti.com
ReplyDeletesite kurma
ürünler
vezirsosyalmedya.com
postegro
sosyal medya yönetimi
surucukursuburada.com
patent sorgula
ReplyDeleteyorumbudur.com
yorumlar
tiktok jeton hilesi
mobil ödeme bozdurma
mobil ödeme bozdurma
mobil ödeme bozdurma
pubg uc satın al
pubg uc satın al