Package 

Class ObservablesKt

    • Method Summary

      Modifier and Type Method Description
      final static <T extends Any> Observable<Observable<T>> completeOnChildCompletion(Observable<Observable<T>> $self) In a few cases it is useful to be able to notify the parents that its child has completed.
      • Methods inherited from class java.lang.Object

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

      • completeOnChildCompletion

         final static <T extends Any> Observable<Observable<T>> completeOnChildCompletion(Observable<Observable<T>> $self)

        In a few cases it is useful to be able to notify the parents that its child has completed. Used mostly for testing. Notifications return Observable<Observable<ByteArray>> that never completes.

        When testing it is currently only possible to assign an Observable<ByteArray> that completes which can be used in Unit tests