org.khasanof.state.StateAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-state Show documentation
Show all versions of fluent-state Show documentation
Fluent - Easy Telegram Bots with Spring
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;
}
}