forked from ReactiveX/RxScala
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default Scheduler parameter to cover up removed RxJava defined me…
…thods Did not remove some Scheduler parameter counterpart method candidates or add a default Scheduler value, due to various reasons for these methods: ``` Error:(106, 7) in trait Observable, multiple overloaded alternatives of method tumblingBuffer define default arguments. trait Observable[+T] def tumblingBuffer(Duration) def tumbling(Duration, Int) def replay(Int, Duration) def replay(Int) def replay(Duration) def takeRight(Int, Duration) def timeout[U >: T](Duration, Observable[U]) def repeat def timer(Duration, Duration) ``` ``` No default Scheduler defined in RxJava: def sliding(Duration, Duration, Int, Scheduler) def replay[R](Observable[T] => Observable[R], Duration, Scheduler) ``` ``` Does not operate on a specific Scheduler by default: def replay[R](Observable[T] => Observable[R], Int) def replay[R](Observable[T] => Observable[R]) ```
- Loading branch information
Showing
1 changed file
with
25 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters