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

com.github.masahitojp.botan.handler.BotanMessageHandlers Maven / Gradle / Ivy

There is a newer version: 0.6.4
Show newest version
package com.github.masahitojp.botan.handler;

import com.github.masahitojp.botan.Robot;

/**
 * add Message Handlers to pattern
 */
public interface BotanMessageHandlers {
    /**
     * register the bot method
     * use Robot#respond or Robot#hear
     *
     * @param robot Robot
     */
    void register(final Robot robot);

    @SuppressWarnings("unused")
    default void initialize(final Robot robot) {
    }

    default void beforeShutdown() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy