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

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

There is a newer version: 4.2.0
Show newest version
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