disconnect method
Disconnects from a peer
Implementation
Future<void> disconnect(PeerId peerId) async {
final client = _clients.remove(peerId);
if (client != null) {
await client.disconnect();
_logger.info('Disconnected from STOMP server at $peerId');
}
}