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

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

package com.viber.bot.event.callback;

import com.viber.bot.Response;
import com.viber.bot.event.BotEventListener;
import com.viber.bot.event.incoming.IncomingSubscribedEvent;

import java.util.concurrent.Future;

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

public interface OnSubscribe extends BotEventListener {
    void subscribe(IncomingSubscribedEvent event, Response response);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy