ConnectModule

Represents a module that can be registered with Webex Connect.

A Connect Module is a component of the Webex Connect SDK that can be started and stopped. Modules are started according to their priority, with higher priority modules being initiated before lower priority ones.

Properties

PropertiesTypeDescription
priorityIntThe priority of the module. Higher priority modules are started before lower priority modules.

Functions

FunctionDescription
shutdownPerforms the shutdown operations for the module.
startupPerforms the startup operations for the module.

shutdown

Performs the shutdown operations for the module.

Syntax:abstract fun shutdown()

startup

Performs the startup operations for the module.

Syntax:abstract fun startup()