close method
Closes the broker, backend, and event-sink connections.
Implementation
Future<void> close() async {
await broker.close();
await backend?.close();
await events.close();
await controlChannel.close();
}
Closes the broker, backend, and event-sink connections.
Future<void> close() async {
await broker.close();
await backend?.close();
await events.close();
await controlChannel.close();
}