第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

限制 Publisher 中的預(yù)取

限制 Publisher 中的預(yù)取

尚方寶劍之說 2023-05-10 15:18:14
我想創(chuàng)建一個(gè)Flux具有按需生成的元素且預(yù)取有限的元素。我嘗試了以下操作,但看起來這段代碼無法處理背壓,因?yàn)樗黦enerateElements變得非常大 (1011):AtomicInteger generateElements = new AtomicInteger(0);Flux<Integer> source = Flux    .create(emitter -> {        while (true)            emitter.next(generateElements.getAndIncrement());        })    .subsribeOn(Schedulers.elastic())    .limitRate(1);source.take(4).subsribe(System.out::println);assertThat(generateElements.get()).isEqualTo(5);我怎樣才能使我的Flux預(yù)取僅限于一次?
查看完整描述

1 回答

?
森欄

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊

您可以Flux.generate在定義單個(gè)項(xiàng)目發(fā)射的地方使用 which expects a callable:

AtomicInteger?generateElements?=?new?AtomicInteger(0);

Flux.generate(emitter?->?emitter.next(generateElements.getAndIncrement()))
????.subscribeOn(Schedulers.elastic())
????.take(4)
????.subscribe(System.out::println);


查看完整回答
反對(duì) 回復(fù) 2023-05-10
  • 1 回答
  • 0 關(guān)注
  • 123 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)