Subscribes to a Maybe and ignores onSuccess and onComplete emissions. If the Maybe emits an error, it is wrapped into an io.reactivex.rxjava3.exceptions.OnErrorNotImplementedException OnErrorNotImplementedException and routed to the {@link RxJavaPlugins#on
()
| 5231 | * @see #subscribe(Consumer, Consumer, Action, DisposableContainer) |
| 5232 | */ |
| 5233 | @SchedulerSupport(SchedulerSupport.NONE) |
| 5234 | @NonNull |
| 5235 | public final Disposable subscribe() { |
| 5236 | return subscribe(Functions.emptyConsumer(), Functions.ON_ERROR_MISSING, Functions.EMPTY_ACTION); |
| 5237 | } |
| 5238 | |
| 5239 | /** |
| 5240 | * Subscribes to a {@code Maybe} and provides a callback to handle the items it emits. |
no test coverage detected