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

com.github.insanusmokrassar.AutoPostTelegramBot.utils.CallbackQueryReceivers.UnsafeCallbackQueryReceiver.kt Maven / Gradle / Ivy

package com.github.insanusmokrassar.AutoPostTelegramBot.utils.CallbackQueryReceivers

import com.github.insanusmokrassar.AutoPostTelegramBot.callbackQueryListener
import com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions.subscribeChecking
import com.github.insanusmokrassar.TelegramBotAPI.bot.RequestsExecutor

abstract class UnsafeCallbackQueryReceiver(
    executor: RequestsExecutor
) : CallbackQueryReceiver(
    executor
) {
    init {
        callbackQueryListener.subscribeChecking {
            invoke(it)
            true
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy