public abstract class

ResourceMaybeObserver

extends Object
implements MaybeObserver<T> Disposable
java.lang.Object
   ↳ io.reactivex.observers.ResourceMaybeObserver<T>

Class Overview

An abstract MaybeObserver that allows asynchronous cancellation of its subscription and associated resources.

All pre-implemented final methods are thread-safe.

Note that onSuccess(Object), onError(Throwable) and onComplete() are exclusive to each other, unlike a regular Observer, and onComplete() is never called after an onSuccess().

Override the protected onStart() to perform initialization when this ResourceMaybeObserver is subscribed to a source.

Use the public dispose() method to dispose the sequence externally and release all resources.

To release the associated resources, one has to call dispose() in onSuccess(), onError() and onComplete() explicitly.

Use add(Disposable) to associate resources (as Disposables) with this ResourceMaybeObserver that will be cleaned up when dispose() is called. Removing previously associated resources is not possible but one can create a CompositeDisposable, associate it with this ResourceMaybeObserver and then add/remove resources to/from the CompositeDisposable freely.

Like all other consumers, ResourceMaybeObserver can be subscribed only once. Any subsequent attempt to subscribe it to a new source will yield an IllegalStateException with message "It is not allowed to subscribe with a(n) <class name> multiple times.".

Implementation of onStart(), onSuccess(Object), onError(Throwable) and onComplete() are not allowed to throw any unchecked exceptions.

Example


 Disposable d =
     Maybe.just(1).delay(1, TimeUnit.SECONDS)
     .subscribeWith(new ResourceMaybeObserver<Integer>() {
         @Override public void onStart() {
             add(Schedulers.single()
                 .scheduleDirect(() -> System.out.println("Time!"),
                     2, TimeUnit.SECONDS));
         }
         @Override public void onSuccess(Integer t) {
             System.out.println(t);
             dispose();
         }
         @Override public void onError(Throwable t) {
             t.printStackTrace();
             dispose();
         }
         @Override public void onComplete() {
             System.out.println("Done!");
             dispose();
         }
     });
 // ...
 d.dispose();
 

Summary

Public Constructors
ResourceMaybeObserver()
Public Methods
final void add(Disposable resource)
Adds a resource to this ResourceObserver.
final void dispose()
Cancels the main disposable (if any) and disposes the resources associated with this ResourceObserver (if any).
final boolean isDisposed()
Returns true if this ResourceObserver has been disposed/cancelled.
final void onSubscribe(Disposable s)
Provides the MaybeObserver with the means of cancelling (disposing) the connection (channel) with the Maybe in both synchronous (from within onSubscribe(Disposable) itself) and asynchronous manner.
Protected Methods
void onStart()
Called once the upstream sets a Subscription on this ResourceObserver.
[Expand]
Inherited Methods
From class java.lang.Object
From interface io.reactivex.MaybeObserver
From interface io.reactivex.disposables.Disposable

Public Constructors

public ResourceMaybeObserver ()

Public Methods

public final void add (Disposable resource)

Adds a resource to this ResourceObserver.

Parameters
resource the resource to add
Throws
NullPointerException if resource is null

public final void dispose ()

Cancels the main disposable (if any) and disposes the resources associated with this ResourceObserver (if any).

This method can be called before the upstream calls onSubscribe at which case the main Disposable will be immediately disposed.

public final boolean isDisposed ()

Returns true if this ResourceObserver has been disposed/cancelled.

Returns
  • true if this ResourceObserver has been disposed/cancelled

public final void onSubscribe (Disposable s)

Provides the MaybeObserver with the means of cancelling (disposing) the connection (channel) with the Maybe in both synchronous (from within onSubscribe(Disposable) itself) and asynchronous manner.

Parameters
s the Disposable instance whose dispose() can be called anytime to cancel the connection

Protected Methods

protected void onStart ()

Called once the upstream sets a Subscription on this ResourceObserver.

You can perform initialization at this moment. The default implementation does nothing.