
net.pechorina.kairos.automat.builder.TransitionConfig.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.builder
import net.pechorina.kairos.automat.State
import net.pechorina.kairos.automat.Transition
interface TransitionConfig {
fun asTransition(stateFinder: (payload: S) -> State): Transition
fun and(): TransitionConfigurer
}