
net.pechorina.kairos.automat.Automat.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kairos-automat Show documentation
Show all versions of kairos-automat Show documentation
Kairos Automat is a finite-state machine library
The newest version!
package net.pechorina.kairos.automat
import net.pechorina.kairos.automat.listeners.AutomatListener
interface Automat {
fun currentState(): S
fun finalStates(): Set
fun initialState(): S
fun extendedState(): ExtendedState
fun sendEvent(event: E)
fun listeners(): List>
fun addListener(listener: AutomatListener)
fun start()
fun stop()
fun reset()
fun isRunning(): Boolean
fun id(): String
fun name(): String?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy