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

com.viber.bot.event.callback.OnMessageSent Maven / Gradle / Ivy

package com.viber.bot.event.callback;

import com.viber.bot.event.BotEventListener;
import com.viber.bot.message.Message;
import com.viber.bot.profile.UserProfile;

import java.util.concurrent.Future;

import static com.google.common.base.Preconditions.checkArgument;

public interface OnMessageSent extends BotEventListener {
    void messageSent(UserProfile to, Message message);

    @Override
    default Future emit(final Object... args) {
        checkArgument(args.length == 2);
        messageSent((UserProfile) args[0], (Message) args[1]);
        return nothing;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy