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

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

package com.arkivanov.mvikotlin.timetravel.proto.internal.thread

abstract class LooperThread : BaseThread() {

    protected abstract fun run(message: T)

    fun submit(message: T) {
        if (!isInterrupted) {
            worker.execute { run(message) }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy