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

de.malkusch.telgrambot.api.TelegramApiFactory Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package de.malkusch.telgrambot.api;

import de.malkusch.telgrambot.TelegramApi;

import java.time.Duration;

public final class TelegramApiFactory {

    public static TelegramApi telegramApi(String chatId, String token, Duration timeout) {
        var timeouts = new Timeouts(timeout);
        TelegramApi api = new TelegramHttpApi(chatId, token, timeouts);
        api = new TelegramRateLimitedApi(api, timeouts);
        return api;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy