PluginWrapper

data class PluginWrapper<TConfig>(val module: PluginModule<TConfig>) : Wrapper

Represents a plugin wrapper, allowing the plugin module to be invoked as a Wrapper.

Parameters

TConfig

The type of the configuration object used by the plugin module.

Constructors

Link copied to clipboard
constructor(module: PluginModule<TConfig>)

Properties

Link copied to clipboard

The plugin module instance associated with the wrapper.

Functions

Link copied to clipboard
open override fun invoke(method: String, args: ByteArray?, env: ByteArray?, invoker: Invoker): Result<ByteArray>
open override fun invoke(method: String, args: List<UByte>?, env: List<UByte>?, invoker: <Error class: unknown class>): List<UByte>

Invokes a method in the Wrapper with the specified options and invoker.