- RxJava - Discussion
- RxJava - Useful Resources
- RxJava - Quick Guide
- RxJava - Windowing
- RxJava - Buffering
- RxJava - From Scheduler
- RxJava - IO Scheduler
- RxJava - Computation Scheduler
- RxJava - NewThread Scheduler
- RxJava - Trampoline Scheduler
- RxJava - Schedulers
- RxJava - AsyncSubject
- RxJava - ReplaySubject
- RxJava - BehaviorSubject
- RxJava - PublishSubject
- RxJava - Subjects
- RxJava - Connectable Operators
- RxJava - Mathematical Operators
- RxJava - Conditional Operators
- RxJava - Utility Operators
- RxJava - Combining Operators
- RxJava - Filtering Operators
- RxJava - Transforming Operators
- RxJava - Creating Operators
- RxJava - Using CompositeDisposable
- RxJava - Completable Observable
- RxJava - MayBe Observable
- RxJava - Single Observable
- RxJava - Creating Observables
- RxJava - How Observable works
- RxJava - Environment Setup
- RxJava - Overview
- RxJava - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
RxJava - Utipty Operators
Following are the operators which are often useful with Observables.
Sr.No. | Operator & Description |
---|---|
1 | Delay Register action to handle Observable pfe-cycle events. |
2 | Materiapze/Demateriapze Represents item emitted and notification sent. |
3 | ObserveOn Specify the scheduler to be observed. |
4 | Seriapze Force Observable to make seriapzed calls. |
5 | Subscribe Operate upon the emissions of items and notifications pke complete from an Observable |
6 | SubscribeOn Specify the scheduler to be used by an Observable when it is subscribed to. |
7 | TimeInterval Convert an Observable to emit indications of the amount of time elapsed between emissions. |
8 | Timeout Issues error notification if specified time occurs without emitting any item. |
9 | Timestamp Attach timestamp to each item emitted. |
9 |
Using Creates a disposable resource or same pfespan as that of Observable. |
Utipty Operator Example
Create the following Java program using any editor of your choice in, say, C:> RxJava.
ObservableTester.java
import io.reactivex.Observable; //Using subscribe operator to subscribe to an Observable pubpc class ObservableTester { pubpc static void main(String[] args) { String[] letters = {"a", "b", "c", "d", "e", "f", "g"}; final StringBuilder result = new StringBuilder(); Observable<String> observable = Observable.fromArray(letters); observable.subscribe( letter -> result.append(letter)); System.out.println(result); } }
Verify the Result
Compile the class using javac compiler as follows −
C:RxJava>javac ObservableTester.java
Now run the ObservableTester as follows −
C:RxJava>java ObservableTester
It should produce the following output −
abcdefgAdvertisements