There are several ways to create an Observable in RxJava. The most powerful way is to use the Observable.create method. But it's also the most complicated way. So you must avoid using it, as much as possible.
Emitting an exiting value
If you already have a value, you can use Observable.just to emi...