com.github.masahitojp.botan.adapter.BotanAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of botan-core Show documentation
Show all versions of botan-core Show documentation
tiny chat bot framework for Java SE 8.(like a Hubot)
package com.github.masahitojp.botan.adapter;
import com.github.masahitojp.botan.Botan;
import com.github.masahitojp.botan.exception.BotanException;
import com.github.masahitojp.botan.message.BotanMessage;
import java.util.Optional;
public interface BotanAdapter {
void run() throws BotanException;
void say(BotanMessage message);
void initialize(Botan botan);
void beforeShutdown();
default Optional getFromAdapterName() {
return Optional.empty();
}
}