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

net.dankito.utils.events.SubscribedRxEvent.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.events

import io.reactivex.disposables.Disposable


open class SubscribedRxEvent(protected val disposable: Disposable) : ISubscribedEvent {

    override fun unsubscribe() {
        if (disposable.isDisposed == false) {
            disposable.dispose()
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy