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

org.telegram.bot.ChatUpdatesBuilder Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.bot;

import org.telegram.bot.handlers.UpdatesHandlerBase;
import org.telegram.bot.kernel.IKernelComm;
import org.telegram.bot.kernel.database.DatabaseManager;
import org.telegram.bot.kernel.differenceparameters.IDifferenceParametersService;

import java.lang.reflect.InvocationTargetException;

/**
 * @author Ruben Bermudez
 * @version 1.0
 * @brief TODO
 * @date 12 of April of 2016
 */
public interface ChatUpdatesBuilder {
    UpdatesHandlerBase build() throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException;
    void setKernelComm(IKernelComm kernelComm);
    void setDifferenceParametersService(IDifferenceParametersService differenceParametersService);
    DatabaseManager getDatabaseManager();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy