Skip to content

Commit 2274c42

Browse files
CoXierakarnokd
authored andcommitted
2.x: Remove fromEmitter() in wiki (#6128)
1 parent 30afb3b commit 2274c42

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/Creating-Observables.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ This page shows methods that create Observables.
22

33
* [**`just( )`**](http://reactivex.io/documentation/operators/just.html) — convert an object or several objects into an Observable that emits that object or those objects
44
* [**`from( )`**](http://reactivex.io/documentation/operators/from.html) — convert an Iterable, a Future, or an Array into an Observable
5-
* [**`create( )`**](http://reactivex.io/documentation/operators/create.html)**advanced use only!** create an Observable from scratch by means of a function, consider `fromEmitter` instead
6-
* [**`fromEmitter()`**](http://reactivex.io/RxJava/javadoc/rx/Observable.html#fromEmitter(rx.functions.Action1,%20rx.AsyncEmitter.BackpressureMode)) — create safe, backpressure-enabled, unsubscription-supporting Observable via a function and push events.
5+
* [**`create( )`**](http://reactivex.io/documentation/operators/create.html)**advanced use only!** create an Observable from scratch by means of a function
76
* [**`defer( )`**](http://reactivex.io/documentation/operators/defer.html) — do not create the Observable until a Subscriber subscribes; create a fresh Observable on each subscription
87
* [**`range( )`**](http://reactivex.io/documentation/operators/range.html) — create an Observable that emits a range of sequential integers
98
* [**`interval( )`**](http://reactivex.io/documentation/operators/interval.html) — create an Observable that emits a sequence of integers spaced by a given time interval

0 commit comments

Comments
 (0)