Communication binding for transmitting Coaty communication events via a specific publish-subscribe messaging protocol.
Use one of the predefined Coaty communication bindings which are provided
as separate npm packages named @coaty/binding.*
. For example, to use
the MQTT protocol as a binding for your Coaty application:
import { MqttBinding } from "@coaty/binding.mqtt";
const configuration: Configuration = {
...
communication: {
binding: MqttBinding.withOptions({
brokerUrl: ... ,
...
}),
...
},
...
};
Determines whether the communication manager should start initially when the container has been resolved. Its value defaults to false.
Generated using TypeDoc
Options used for communication.