File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 15
15
import java .util .*;
16
16
import java .util .concurrent .*;
17
17
18
+ import rx .annotations .Beta ;
18
19
import rx .annotations .Experimental ;
19
20
import rx .exceptions .*;
20
21
import rx .functions .*;
@@ -5049,7 +5050,9 @@ public final Observable<T> onBackpressureBuffer() {
5049
5050
*
5050
5051
* @return the source Observable modified to buffer items up to the given capacity.
5051
5052
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Backpressure">RxJava wiki: Backpressure</a>
5053
+ * @Beta
5052
5054
*/
5055
+ @ Beta
5053
5056
public final Observable <T > onBackpressureBuffer (long capacity ) {
5054
5057
return lift (new OperatorOnBackpressureBuffer <T >(capacity ));
5055
5058
}
@@ -5068,8 +5071,10 @@ public final Observable<T> onBackpressureBuffer(long capacity) {
5068
5071
*
5069
5072
* @return the source Observable modified to buffer items up to the given capacity.
5070
5073
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Backpressure">RxJava wiki: Backpressure</a>
5074
+ * @Beta
5071
5075
*/
5072
- public final Observable <T > onBackpressureBuffer (long capacity , Func0 <Void > onOverflow ) {
5076
+ @ Beta
5077
+ public final Observable <T > onBackpressureBuffer (long capacity , Action0 onOverflow ) {
5073
5078
return lift (new OperatorOnBackpressureBuffer <T >(capacity , onOverflow ));
5074
5079
}
5075
5080
You can’t perform that action at this time.
0 commit comments