Future<Reply> myevents(String uuid, {String format: '', int timeoutSeconds: 10})

The 'myevents' subscription allows your inbound socket connection to behave like an outbound socket connect. It will "lock on" to the events for a particular uuid and will ignore all other events, closing the socket when the channel goes away or closing the channel when the socket disconnects and all applications have finished executing.

Source

Future<Reply> myevents(String uuid,
    {String format: '', int timeoutSeconds: 10}) {
  if (!EventFormat.supportedFormats.contains(format)) {
    return new Future.error(new UnsupportedError(
        'Format "$format" unsupported. Supported formats are: '
        '${EventFormat.supportedFormats.join(', ')}'));
  }

  return _subscribeAndSendCommand(
      'myevents $uuid', new Duration(seconds: timeoutSeconds));
}