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

org.khasanof.state.StateAction Maven / Gradle / Ivy

The newest version!
package org.khasanof.state;

/**
 * @author Nurislom
 * @see org.khasanof.state
 * @since 8/15/2023 9:18 PM
 */
public interface StateAction extends Action {

    /**
     *
     * @return
     */
    S state();

    /**
     *
     * @return
     */
    @Override
    default boolean updateHandlersProceed() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy