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

nativeMain.com.arkivanov.mvikotlin.timetravel.proto.internal.thread.Thread.kt Maven / Gradle / Ivy

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