disable method

void disable()

Disconnects from all sockets without restarting them

Implementation

void disable() {
		for (final socket in sockets) {
			socket.disable();
		}
  notifyListeners();
}