nativeCommonMain.com.arkivanov.mvikotlin.timetravel.proto.internal.thread.Thread.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mvikotlin-timetravel-proto-internal Show documentation
Show all versions of mvikotlin-timetravel-proto-internal Show documentation
Kotlin Multiplatform MVI framework
package com.arkivanov.mvikotlin.timetravel.proto.internal.thread
abstract class Thread : BaseThread() {
protected abstract fun run()
fun start() {
if (!isInterrupted) {
worker.execute {
run()
interrupt()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy