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

net.peanuuutz.fork.ui.scene.base.DefaultTextInputDispatcher.kt Maven / Gradle / Ivy

The newest version!
package net.peanuuutz.fork.ui.scene.base

import kotlinx.coroutines.channels.BufferOverflow
import kotlinx.coroutines.flow.MutableSharedFlow
import net.peanuuutz.fork.ui.ui.context.text.TextInputDispatcher
import net.peanuuutz.fork.ui.ui.context.text.TextInputEvent

class DefaultTextInputDispatcher : TextInputDispatcher {
    override val input: MutableSharedFlow = MutableSharedFlow(
        extraBufferCapacity = 1024,
        onBufferOverflow = BufferOverflow.DROP_OLDEST
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy