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

com.blr19c.falowp.bot.system.scheduling.api.SchedulingBotApiSupport.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0-RC2
Show newest version
package com.blr19c.falowp.bot.system.scheduling.api

import com.blr19c.falowp.bot.system.api.BotApi
import kotlin.reflect.KClass

/**
 * 定时任务支持
 */
interface SchedulingBotApiSupport {

    /**
     * @param receiveId 接收人id
     */
    suspend fun supportReceive(receiveId: String): Boolean

    /**
     * @param receiveId 接收人id
     */
    suspend fun bot(receiveId: String, originalClass: KClass<*>): BotApi

    /**
     * 排序
     */
    fun order(): Int = 0

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy