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

net.pechorina.kairos.automat.Automat.kt Maven / Gradle / Ivy

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