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

com.noheltcj.rxcommon.disposables.InternalDisposable.kt Maven / Gradle / Ivy

package com.noheltcj.rxcommon.disposables

internal class InternalDisposable(private val onDispose: () -> Unit) : Disposable {
  override fun dispose() {
    onDispose()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy