watchOpen method

  1. @override
HWatch watchOpen(
  1. String dis,
  2. HNum? lease
)

/////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// Create a new watch with an empty subscriber list.

The dis string is a debug string to keep track of who created the watch.

Implementation

// Watches
//////////////////////////////////////////////////////////////////////////

  /// Create a new watch with an empty subscriber list.
  ///
  /// The dis string is a debug string to keep track of who
  /// created the watch.
  @override
  HWatch watchOpen(String dis, HNum? lease) {
    return HClientWatch(this, dis, lease);
  }