Force

data class Force @MiraiInternalApi constructor(val bot: Bot, val title: String, val message: String) : BotOfflineEvent, Packet, BotPassiveEvent

被挤下线. 默认不会自动重连. 可将 reconnect 改为 true 以重连.

Constructors

Link copied to clipboard
constructor(bot: Bot, title: String, message: String)

Functions

Link copied to clipboard
fun cancel()
Link copied to clipboard
abstract fun intercept()

拦截这个事件

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val bot: Bot
Link copied to clipboard

限制一个事件实例不能并行广播. (适用于 object 广播的情况)

Link copied to clipboard
Link copied to clipboard
abstract val isIntercepted: Boolean

事件是否已被拦截.

Link copied to clipboard
Link copied to clipboard
open override var reconnect: Boolean

true 时会尝试重连. 仅 BotOfflineEvent.Force 默认为 false, 其他默认为 true.

Link copied to clipboard