Package 

Class CompletableUseCase

    • Method Summary

      Modifier and Type Method Description
      final Completable create(ARGS args) Creates internal Completable Rx stream, applies requested work & result schedulers and exposes this stream as a Completable.
      • Methods inherited from class java.lang.Object

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

      • CompletableUseCase

        CompletableUseCase()
    • Method Detail

      • create

         final Completable create(ARGS args)

        Creates internal Completable Rx stream, applies requested work & result schedulers and exposes this stream as a Completable. This method is handy when you want to combine streams of multiple use cases. For example:

        usecase_A.create(Unit).andThen(usecase_B.stream(Unit))