Returns a Flowable that emits no items to the Subscriber and immediately invokes its Subscriber#onComplete onComplete method. Backpressur
()
| 2063 | * @see <a href="http://reactivex.io/documentation/operators/empty-never-throw.html">ReactiveX operators documentation: Empty</a> |
| 2064 | */ |
| 2065 | @CheckReturnValue |
| 2066 | @BackpressureSupport(BackpressureKind.PASS_THROUGH) |
| 2067 | @SchedulerSupport(SchedulerSupport.NONE) |
| 2068 | @SuppressWarnings("unchecked") |
| 2069 | @NonNull |
| 2070 | public static <@NonNull T> Flowable<T> empty() { |
| 2071 | return RxJavaPlugins.onAssembly((Flowable<T>) FlowableEmpty.INSTANCE); |
| 2072 | } |
| 2073 | |
| 2074 | /** |
| 2075 | * Returns a {@code Flowable} that invokes a {@link Subscriber}'s {@link Subscriber#onError onError} method when the |