在线二区人妖系列_国产亚洲欧美日韩在线一区_国产一级婬片视频免费看_精品少妇一区二区三区在线

鍍金池/ 教程/ Android/ Sample
調(diào)度器 Scheduler
Empty/Never/Throw
Replay
這個頁面展示了創(chuàng)建Observable的各種方法。
ObserveOn
ReactiveX
TimeInterval
Window
本頁展示的操作符用于對整個序列執(zhí)行算法操作或其它操作,由于這些操作必須等待數(shù)據(jù)發(fā)射完成(通常也必須緩存這些數(shù)據(jù)),它們對于非常長
IgnoreElements
Distinct
Last
Start
And/Then/When
Switch
創(chuàng)建操作
Materialize/Dematerialize
CombineLatest
Catch
實(shí)現(xiàn)自己的操作符
StringObservable
Map
ConnectableObservable
Using
Take
BlockingObservable
TakeLast
Defer
RxJavaSchedulersHook
First
FlatMap
這個頁面的操作符可用于根據(jù)條件發(fā)射或變換Observables,或者對它們做布爾運(yùn)算:
Do
Repeat
Serialize
這個頁面展示的操作符可用于過濾和選擇Observable發(fā)射的數(shù)據(jù)序列。
這個頁面列出了很多用于Observable的輔助操作符
Single
Retry
從錯誤中恢復(fù)的技術(shù)
Sample
Merge
算術(shù)和聚合操作
Range
Timestamp
RxJava Issues
From
Subscribe
Subject
Delay
Skip
SubscribeOn
Filter
按字母順序排列的全部操作符列表
Timeout
Scan
onError
Zip
RxJava文檔和教程
Publish
ElementAt
第一個例子
SkipLast
Just
Timer
Debounce
GroupBy
條件和布爾操作
這個頁面展示了可用于對Observable發(fā)射的數(shù)據(jù)執(zhí)行變換操作的各種操作符。
Introduction
rxjava-async
介紹響應(yīng)式編程
這個頁面展示的操作符可用于組合多個Observables。
ReactiveX
Connect
操作符分類
StartWith
Interval
Join
To
Buffer
RefCount
介紹
Observable

Sample

Sample

定期發(fā)射Observable最近發(fā)射的數(shù)據(jù)項(xiàng)

http://wiki.jikexueyuan.com/project/rx-docs/images/operators/sample.c.png" alt="sample" />

Sample操作符定時查看一個Observable,然后發(fā)射自上次采樣以來它最近發(fā)射的數(shù)據(jù)。

在某些實(shí)現(xiàn)中,有一個ThrottleFirst操作符的功能類似,但不是發(fā)射采樣期間的最近的數(shù)據(jù),而是發(fā)射在那段時間內(nèi)的第一項(xiàng)數(shù)據(jù)。

RxJava將這個操作符實(shí)現(xiàn)為samplethrottleLast

注意:如果自上次采樣以來,原始Observable沒有發(fā)射任何數(shù)據(jù),這個操作返回的Observable在那段時間內(nèi)也不會發(fā)射任何數(shù)據(jù)。

http://wiki.jikexueyuan.com/project/rx-docs/images/operators/sample.png" alt="sample" />

sample(別名throttleLast)的一個變體按照你參數(shù)中指定的時間間隔定時采樣(TimeUnit指定時間單位)。

sample的這個變體默認(rèn)在computation調(diào)度器上執(zhí)行,但是你可以使用第三個參數(shù)指定其它的調(diào)度器。

http://wiki.jikexueyuan.com/project/rx-docs/images/operators/sample.o.png" alt="sample" />

sample的這個變體每當(dāng)?shù)诙€Observable發(fā)射一個數(shù)據(jù)(或者當(dāng)它終止)時就對原始Observable進(jìn)行采樣。第二個Observable通過參數(shù)傳遞給sample

sample的這個變體默認(rèn)不在任何特定的調(diào)度器上執(zhí)行。

http://wiki.jikexueyuan.com/project/rx-docs/images/operators/throttleFirst.png" alt="throttleFirst" />

throttleFirstthrottleLast/sample不同,在每個采樣周期內(nèi),它總是發(fā)射原始Observable的第一項(xiàng)數(shù)據(jù),而不是最近的一項(xiàng)。

throttleFirst操作符默認(rèn)在computation調(diào)度器上執(zhí)行,但是你可以使用第三個參數(shù)指定其它的調(diào)度器。

上一篇:rxjava-async下一篇:CombineLatest