真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

android中怎么利用Flow實現(xiàn)流式響應(yīng)

android中怎么利用Flow實現(xiàn)流式響應(yīng),針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

創(chuàng)新互聯(lián)專業(yè)IDC數(shù)據(jù)服務(wù)器托管提供商,專業(yè)提供成都服務(wù)器托管,服務(wù)器租用,鄭州服務(wù)器托管鄭州服務(wù)器托管,成都多線服務(wù)器托管等服務(wù)器托管服務(wù)。

簡單使用

通過Flow 靜態(tài)create方法創(chuàng)建一個流,then串聯(lián)下個流,如果不需要返回Void泛型。Event有兩個泛型P、R,第一個是前個流Flow的返回值類型,第二個是當前流Flow返回類型。await exec方法是結(jié)束當前事件流,并將結(jié)果代入下個流。

打印兩句話

Flow.create(new Event() {          @Override          public void run(Flow flow, Void aVoid, Await await) {            System.out.println("this is first flow");            await.exec(null);          }        }).then(new Event() {          @Override          public void run(Flow flow, Void aVoid, Await await) {            System.out.println("this is two flow");            await.exec(null);          }        }).start();

Lambda簡化之后

Flow.create((NoneEvent) (flow, await) -> {          System.out.println("this is first flow");          await.exec();        }).then((NoneEvent) (flow, await) -> {            System.out.println("this is two flow");            await.exec();        }).start();

兩數(shù)相加

Flow.create((FirstEvent) (flow, await) ->            await.exec(3))           .then((Event) (flow, integer, await) ->               await.exec(integer + 5))           .resultThen((flow, result) ->               System.out.println("total is"+result))           .start();

resultThen方法返回是當前流的結(jié)果,每個flow后面使用resultThen都可以獲取流的結(jié)果。如果遇到異常,可以通過flow throwException方法拋出,可以在flow后面catchThen立刻處理,也可以在最后flow catchThen處理。finallyThen是事件流結(jié)束一個通知。

Flow.create((FirstEvent) (flow, await) ->            await.exec(0))           .then((Event) (flow, perVal, await) ->{             if(perVal == 0){               flow.throwException("Dividend cannot be 0!");             }else{               await.exec(perVal/5);             }           })           .resultThen((flow, result) ->               System.out.println("total is"+result))           .catchThen((flow, e) ->               System.out.println(e.getMessage()))            .finallyThen((flow, await) ->               System.out.println("this is flow end")).start();

切換線程

使用flow on方法可以切換線程,on傳遞一個Converter參數(shù),代表下個流切換。如果兩個Converter參數(shù),代表當前流和下個流都切換線程。當然你也可以實現(xiàn)Converter接口來實現(xiàn)其他功能。

Flow.create((FirstEvent) (flow, await) ->            await.exec(0))           .on(AndroidMain.get(),SingleThread.get())           .then((Event) (flow, perVal, await) ->{             if(perVal == 0){               flow.throwException("Dividend cannot be 0!");             }else{               await.exec(perVal/5);             }           })           .on(AndroidMain.get())           .resultThen((flow, result) ->               System.out.println("total is"+result))           .on(AndroidMain.get())           .catchThen((flow, e) ->               System.out.println(e.getMessage()))           .on(SingleThread.get())           .finallyThen((flow, await) ->               System.out.println("this is flow end")).start();

Collection結(jié)果轉(zhuǎn)換成多個流

Flow.each((FirstEvent>) (flow, await) -> {          ArrayList list = new ArrayList<>();          list.add("1");          list.add("2");          list.add("3");          await.exec(list);        }).then((LastEvent) (flow, s, await) -> {          System.out.println("this is"+s);        }).start();

多個流結(jié)果轉(zhuǎn)換成一個流

Flow.merge((flow, await) -> await.exec(1),            (flow, await) -> await.exec(2),            (flow, await) -> await.exec(2)).resultThen((flow, result)            -> System.out.println"result"+result)).start();

條件選擇

根據(jù)條件判斷重新發(fā)起Flow流(返回參數(shù)可以不一樣)

Flow.create((NoneEvent) (flow,await) ->{          System.out.println("start");          await.exec();        })         .on(SingleThread.get())         .conditionThen((VoidCondition) () -> false,                Flow.create((NoneEvent) (flow,await) -> {                  System.out.println("this is true");                  await.exec();                }),                Flow.create((NoneEvent) (flow,await) -> {                  System.out.println("this is false");                  await.exec();                })).start();

根據(jù)條件判斷執(zhí)行Flow流,可以合并到一起。(返回參數(shù)必須一致)

Flow.condition2(() -> isGo, (FirstEvent) (flow, await) -> {          System.out.println("this is true");          await.exec(1);        }, (flow, await) -> {          System.out.println("this is false");          await.exec(0);        }).resultThen((flow, result) -> System.out.println("result"+result))            .watch(this).start();

生命周期解綁

通過flow watch方法。被觀察者必須實現(xiàn)ILifeObservable接口。

Flow.create((FirstEvent) (flow, await) ->await.exec(0))   .watch(this).start();

關(guān)于android中怎么利用Flow實現(xiàn)流式響應(yīng)問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。


新聞名稱:android中怎么利用Flow實現(xiàn)流式響應(yīng)
文章出自:http://weahome.cn/article/igdhjj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部