start method

void start()

Implementation

void start() {
  if (_started) {
    throw RoomServerException("client already started");
  }
  _started = true;
}