usePlugin

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

Deprecated

Use typed registerPlugin methods on InstallParameters.Builder or UninstallParameters.Builder directly. This will become an error in the next minor version. Untyped plugins (implementing AckpinePlugin directly) will throw when used.

Applies a plugin to a session.

Parameters

plugin

Java class of an applied plugin, implementing AckpinePlugin.

parameters

parameters of the applied plugin for the session being configured.


abstract fun usePlugin(plugin: Class<out AckpinePlugin>): Self

Deprecated

Use typed registerPlugin methods on InstallParameters.Builder or UninstallParameters.Builder directly. This will become an error in the next minor version. Untyped plugins (implementing AckpinePlugin directly) will throw when used.

Applies a plugin to a session.

Parameters

plugin

Java class of an applied plugin, implementing AckpinePlugin.