All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.noheltcj.rxcommon.observers.NextCompleteObserver.kt Maven / Gradle / Ivy

package com.noheltcj.rxcommon.observers

class NextCompleteObserver (
    onNext: (E) -> Unit,
    onComplete: () -> Unit
) : AbstractObserver(
    doOnNext = onNext,
    doOnComplete = onComplete
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy