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

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

合并到 Observables / Singles 的方式有哪些?

合并到 Observables / Singles 的方式有哪些?

Helenr 2023-06-14 10:31:54
我有這段代碼:public void testGetBlob() throws RequestException {    TestData.getNewApplication().flatMap(testApplication -> {        Client.initialize(testApplication.getAppId(), testApplication.getApiToken(), testApplication.getMasterKey());        assertNotNull(testApplication.getApiToken());        assertNotNull(testApplication.getAppId());        assertNotNull(testApplication.getMasterKey());        Entity entity = new Entity("Todo");        return entity.create();    }).flatMap(entity -> entity.setBlobProperty("text", "Hello world!".getBytes("UTF-8")))            .flatMap(isSuccess -> {                if(isSuccess) {                    // need to access `entity` at this point                    return Single.just(isSuccess);                } else {                    return Single.just(false);                }            }).subscribe(success -> {        Browser.getWindow().getConsole().log("Blob created");        finishTest();    }, error -> {        Browser.getWindow().getConsole().error(error.getMessage());        fail();    });    delayTestFinish(5000);}在上面的代碼中,我需要做的是能夠訪問(wèn)entity注釋中的對(duì)象。如何做呢?
查看完整描述

1 回答

?
LEATH

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

在一個(gè)運(yùn)算符和另一個(gè)運(yùn)算符之間,您只能發(fā)出一種對(duì)象類型。在您的情況下,您正在發(fā)出一個(gè)布爾值,但您還希望能夠訪問(wèn) Entity 對(duì)象。解決方案是將兩個(gè)值(實(shí)體對(duì)象和布爾值)包裝在一個(gè)類中并發(fā)出該類。


創(chuàng)建一個(gè)類來(lái)包裝 Entity 的發(fā)射和 setBlobProperty 的結(jié)果。


? ? class Pair {

? ? ? ? private final Entity entity;

? ? ? ? private final boolean success;


? ? ? ? private Pair(Entity entity, boolean success) {

? ? ? ? ? ? this.entity = entity;

? ? ? ? ? ? this.success = success;

? ? ? ? }


? ? ? ? public Entity getEntity() {

? ? ? ? ? ? return entity;

? ? ? ? }


? ? ? ? public boolean isSuccess() {

? ? ? ? ? ? return success;

? ? ? ? }

? ? }

然后更改您的代碼以發(fā)出該類:


public void testGetBlob() throws RequestException {

? ? TestData.getNewApplication().flatMap(testApplication -> {

// ...

? ? ? ? return entity.create();

? ? }).flatMap(entity ->?

? ? ? ? entity.setBlobProperty("text", "Hello world!".getBytes("UTF-8"))

? ? ? ? ? ? // 1. Flat map the setBlobProperty call and emit a Pair with the entity and result

? ? ? ? ? ? .flatMap(isSuccess -> Single.just(new Pair(entity, isSuccess)))

? ? )

? ? ? ? ? ? .flatMap(pair -> {

? ? ? ? ? ? ? ? if(pair.isSuccess()) {

? ? ? ? ? ? ? ? ? ? // 2. entity is available here via pair.getEntity()

? ? ? ? ? ? ? ? ? ? return Single.just(isSuccess);

? ? ? ? ? ? ? ? } else {

? ? ? ? ? ? ? ? ? ? return Single.just(false);

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }).subscribe(success -> {

// ...

? ? }

}

Ps:不要?jiǎng)?chuàng)建自己的 Pair 類,而是檢查此線程中的選項(xiàng)之一。如果您使用的是 Kotlin,則有一個(gè)Pair類。



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

添加回答

舉報(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)