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

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

The newest version!
package org.khasanof.state;

import org.telegram.telegrambots.meta.api.objects.Update;
import org.telegram.telegrambots.meta.bots.AbsSender;

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

    /**
     *
     * @param update
     * @param state
     * @throws Exception
     */
    void onReceive(Update update, State state) throws Exception;

    /**
     *
     * @return
     */
    boolean updateHandlersProceed();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy