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

commonMain.gateway.handler.BaseGatewayEventHandler.kt Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package dev.kord.core.gateway.handler

import dev.kord.core.Kord
import dev.kord.core.event.Event as CoreEvent
import dev.kord.gateway.Event as GatewayEvent

internal abstract class BaseGatewayEventHandler {

    abstract suspend fun handle(event: GatewayEvent, shard: Int, kord: Kord, context: LazyContext?): CoreEvent?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy