Package 

Interface Disposable

    • Method Summary

      Modifier and Type Method Description
      abstract Unit dispose() Cancels this disposable's work and releases any held resources.
      abstract Deferred<ImageResult> getJob() The most recent image request job.
      abstract Boolean getIsDisposed() Returns 'true' if this disposable's work is complete or cancelling.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • dispose

         abstract Unit dispose()

        Cancels this disposable's work and releases any held resources.

      • getJob

         abstract Deferred<ImageResult> getJob()

        The most recent image request job. This field is not immutable and can change if the request is replayed.

      • getIsDisposed

         abstract Boolean getIsDisposed()

        Returns 'true' if this disposable's work is complete or cancelling.