@@ -17,7 +17,7 @@ This page shows methods that create reactive sources, such as `Observable`s.
1717
1818** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Completable `
1919
20- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/just.html ] ( http://reactivex.io/documentation/operators/just.html )
20+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/just.html ] ( http://reactivex.io/documentation/operators/just.html )
2121
2222Constructs a reactive type by taking a pre-existing object and emitting that specific object to the downstream consumer upon subscription.
2323
@@ -46,7 +46,7 @@ Constructs a sequence from a pre-existing source or generator type.
4646
4747* Note: These static methods use the postfix naming convention (i.e., the argument type is repeated in the method name) to avoid overload resolution ambiguities.*
4848
49- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/from.html ] ( http://reactivex.io/documentation/operators/from.html )
49+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/from.html ] ( http://reactivex.io/documentation/operators/from.html )
5050
5151### fromIterable
5252
@@ -203,7 +203,7 @@ observable.subscribe(
203203
204204** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
205205
206- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/create.html ] ( http://reactivex.io/documentation/operators/create.html )
206+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/create.html ] ( http://reactivex.io/documentation/operators/create.html )
207207
208208Construct a ** safe** reactive type instance which when subscribed to by a consumer, runs an user-provided function and provides a type-specific ` Emitter ` for this function to generate the signal(s) the designated business logic requires. This method allows bridging the non-reactive, usually listener/callback-style world, with the reactive world.
209209
@@ -239,7 +239,7 @@ executor.shutdown();
239239
240240** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
241241
242- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/defer.html ] ( http://reactivex.io/documentation/operators/defer.html )
242+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/defer.html ] ( http://reactivex.io/documentation/operators/defer.html )
243243
244244Calls an user-provided ` java.util.concurrent.Callable ` when a consumer subscribes to the reactive type so that the ` Callable ` can generate the actual reactive instance to relay signals from towards the consumer. ` defer ` allows:
245245
@@ -266,7 +266,7 @@ observable.subscribe(time -> System.out.println(time));
266266
267267** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Completable `
268268
269- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/range.html ] ( http://reactivex.io/documentation/operators/range.html )
269+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/range.html ] ( http://reactivex.io/documentation/operators/range.html )
270270
271271Generates a sequence of values to each individual consumer. The ` range() ` method generates ` Integer ` s, the ` rangeLong() ` generates ` Long ` s.
272272
@@ -287,7 +287,7 @@ characters.subscribe(character -> System.out.print(character), erro -> error.pri
287287
288288** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Completable `
289289
290- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/interval.html ] ( http://reactivex.io/documentation/operators/interval.html )
290+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/interval.html ] ( http://reactivex.io/documentation/operators/interval.html )
291291
292292Periodically generates an infinite, ever increasing numbers (of type ` Long ` ). The ` intervalRange ` variant generates a limited amount of such numbers.
293293
@@ -309,7 +309,7 @@ clock.subscribe(time -> {
309309
310310** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
311311
312- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/timer.html ] ( http://reactivex.io/documentation/operators/timer.html )
312+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/timer.html ] ( http://reactivex.io/documentation/operators/timer.html )
313313
314314After the specified time, this reactive source signals a single ` 0L ` (then completes for ` Flowable ` and ` Observable ` ).
315315
@@ -325,7 +325,7 @@ eggTimer.blockingSubscribe(v -> System.out.println("Egg is ready!"));
325325
326326** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_off.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
327327
328- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
328+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
329329
330330This type of source signals completion immediately upon subscription.
331331
@@ -344,7 +344,7 @@ empty.subscribe(
344344
345345** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
346346
347- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
347+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
348348
349349This type of source does not signal any ` onNext ` , ` onSuccess ` , ` onError ` or ` onComplete ` . This type of reactive source is useful in testing or "disabling" certain sources in combinator operators.
350350
@@ -363,7 +363,7 @@ never.subscribe(
363363
364364** Available in:** ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Flowable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Observable ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Maybe ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Single ` , ![ image] ( https://raw.github.com/wiki/ReactiveX/RxJava/images/checkmark_on.png ) ` Completable `
365365
366- ** ReactiveX doumentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
366+ ** ReactiveX documentation :** [ http://reactivex.io/documentation/operators/empty-never-throw.html ] ( http://reactivex.io/documentation/operators/empty-never-throw.html )
367367
368368Signal an error, either pre-existing or generated via a ` java.util.concurrent.Callable ` , to the consumer.
369369
0 commit comments