Package-level declarations
Types
Link copied to clipboard
Name of the Ktor plugin that is currently being invoked. This name is used in debugging mode.
Link copied to clipboard
data class PluginsTrace(val eventOrder: MutableList<PluginTraceElement> = mutableListOf()) : AbstractCoroutineContextElement
Contains information of all the plugins that have been executed during the current call. Is used in Intellij Idea debugger to show plugin execution order.
Link copied to clipboard
data class PluginTraceElement(val pluginName: String, val handler: String, val event: PluginTraceElement.PluginEvent)
Contains information about the plugin and handler (onCall, onReceive, and so on) that is currently being executed. Is used in Intellij Idea debugger to show plugin execution order.