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

com.github.insanusmokrassar.AutoPostTelegramBot.base.models.RequestsRegenConfig.kt Maven / Gradle / Ivy

package com.github.insanusmokrassar.AutoPostTelegramBot.base.models

import com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions.initSemaphore
import com.pengrad.telegrambot.TelegramBot

data class RequestsRegenConfig(
    val delay: Long = 1000,
    val regen: Int = 1,
    val max: Int = 30
) {
    fun applyFor(bot: TelegramBot) {
        initSemaphore(bot, max, delay, regen)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy