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

commonMain.com.arkivanov.mvikotlin.rx.Disposable.kt Maven / Gradle / Ivy

package com.arkivanov.mvikotlin.rx

/**
 * Represents a disposable resource
 */
interface Disposable {

    /**
     * Returns whether the instance is disposed or not
     */
    val isDisposed: Boolean

    /**
     * Disposes the instance
     */
    fun dispose()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy