usePlugin

abstract fun <Params : AckpinePlugin.Parameters> usePlugin(plugin: KClass<out AckpinePlugin>, parameters: Params)

Deprecated (with error)

Use typed plugin() methods on InstallParametersDsl or UninstallParametersDsl directly. This will be removed in the next minor version. Untyped plugins (implementing AckpinePlugin directly) will throw when used.

Applies a plugin to a session.

Parameters

plugin

Kotlin class of an applied plugin, implementing AckpinePlugin.

parameters

parameters of the applied plugin for the session being configured.


abstract fun usePlugin(plugin: KClass<out AckpinePlugin>)

Deprecated (with error)

Use typed plugin() methods on InstallParametersDsl or UninstallParametersDsl directly. This will be removed in the next minor version. Untyped plugins (implementing AckpinePlugin directly) will throw when used.

Applies a plugin to a session.

Parameters

plugin

Kotlin class of an applied plugin, implementing AckpinePlugin.