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

org.squirrelframework.foundation.fsm.MutableStateMachine Maven / Gradle / Ivy

Go to download

foundation module of squirrel framework which provided event driven infrastructure and a finite state machine implementation.

There is a newer version: 0.3.10
Show newest version
package org.squirrelframework.foundation.fsm;

public interface MutableStateMachine, S, E, C> extends StateMachine {
    
    /**
     * Set last active child state of parent state
     * @param parentStateId id of parent state
     * @param childStateId id of child state
     */
    void setLastActiveChildState(S parentStateId, S childStateId);
    
    void setSubState(S parentState, S subState);
    
    void removeSubState(S parentState, S subState);
    
    void removeSubStatesOn(S parentState);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy