Skip to content

RTKPlugin

The RTKPlugin module represents a single plugin in the meeting. A plugin can be obtained from one of the plugin arrays in meeting.plugins. For example,

TypeScript
const plugin1 = meeting.plugins.active.get(pluginId);
const plugin2 = meeting.plugins.all.get(pluginId);

plugin.component

The component for this plugin, as provided in the plugin config.

Kind: instance property of RTKPlugin

plugin.telemetry

Kind: instance property of RTKPlugin

plugin.activePluginsStore

Kind: instance property of RTKPlugin

ParamType
contextContext
configClientPluginConfig
activePluginsStoreStore
selfSelf

plugin.activateForSelf()

Kind: instance method of RTKPlugin

plugin.deactivateForSelf()

Kind: instance method of RTKPlugin

plugin.activate()

Activate this plugin for all participants.

Kind: instance method of RTKPlugin

plugin.deactivate()

Deactivate this plugin for all participants.

Kind: instance method of RTKPlugin