commonMain.io.jumpco.open.kfsm.DefaultTransition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kfsm-jvm Show documentation
Show all versions of kfsm-jvm Show documentation
Kotlin Finite-state machine
/*
* Copyright (c) 2019. Open JumpCO
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program. If not, see .
*/
package io.jumpco.open.kfsm
/**
* @suppress
* Represents a DefaultTransition
* @param event The event identifies the transition
* @param targetState when optional represents an internal transition
* @param action optional lambda will be invoked when transition occurs.
*/
class DefaultTransition, S, C>(
internal val event: E,
targetState: S?,
targetMap: String?,
automatic: Boolean,
type: TransitionType,
action: StateAction?
) : Transition(targetState, targetMap, automatic, type, action)