commonMain.jetbrains.datalore.base.registration.Registration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lets-plot-common Show documentation
Show all versions of lets-plot-common Show documentation
Lets-Plot JVM package without rendering part
/*
* Copyright (c) 2020. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package jetbrains.datalore.base.registration
abstract class Registration : Disposable {
private var myRemoved: Boolean = false
protected abstract fun doRemove()
//this method should never be overridden except in Registration.EMPTY
open fun remove() {
if (myRemoved) {
throw IllegalStateException("Registration already removed")
}
myRemoved = true
doRemove()
}
override fun dispose() {
remove()
}
private class EmptyRegistration : Registration() {
override fun doRemove() {}
override fun remove() {}
}
companion object {
val EMPTY: Registration =
EmptyRegistration()
fun from(disposable: Disposable): Registration {
return object : Registration() {
override fun doRemove() {
disposable.dispose()
}
}
}
fun from(vararg disposables: Disposable): Registration {
return object : Registration() {
override fun doRemove() {
for (d in disposables) {
d.dispose()
}
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy