This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.remember | |
import kotlinx.datetime.Clock | |
private const val DEBOUNCE_TIME_MILLIS = 1000L | |
internal interface EventProcessor { | |
fun processEvent(event: () -> Unit) | |
companion object { |