com.cmt.statemachine.builder.When Maven / Gradle / Ivy
The newest version!
package com.cmt.statemachine.builder;
import com.cmt.statemachine.Action;
/**
* When
*
* @author Frank Zhang
* @date 2020-02-07 9:33 PM
*/
public interface When{
/**
* Define action to be performed during transition
*
* @param action performed action
*/
void perform(Action action);
}