The module registers a IpcMainGateway or a IpcRendererGateway bound with the key GatewaySymbol.
Register the module
import {ContainerBuilder} from "@tmorin/ceb-inversion-core"import {SimpleGatewaySymbol} from "@tmorin/ceb-messaging-simple"import {SimpleModule} from "@tmorin/ceb-messaging-simple-inversion"import {ElectronModule} from "@tmorin/ceb-messaging-adapter-electron"const container = ContainerBuilder.get() .module(new SimpleModule({gatewayRegistryKey: SimpleGatewaySymbol})) .module(new ElectronModule()) .build()
Options of the module.
The registry.
Override this method to cleanup things when the container is disposed.
Generated using TypeDoc
The module registers a IpcMainGateway or a IpcRendererGateway bound with the key GatewaySymbol.
Register the module