com.viber.bot.event.callback.OnMessageReceived Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viber-bot Show documentation
Show all versions of viber-bot Show documentation
Use this library to communicate with the Viber API to develop a bot for https://developers.viber.com/.
package com.viber.bot.event.callback;
import com.viber.bot.Response;
import com.viber.bot.event.BotEventListener;
import com.viber.bot.event.incoming.IncomingMessageEvent;
import com.viber.bot.message.Message;
import java.util.concurrent.Future;
import static com.google.common.base.Preconditions.checkArgument;
public interface OnMessageReceived extends BotEventListener {
void messageReceived(IncomingMessageEvent event, Message message, Response response);
@Override
default Future emit(final Object... args) {
checkArgument(args.length == 3);
messageReceived((IncomingMessageEvent) args[0], (Message) args[1], (Response) args[2]);
return nothing;
}
}