Class WatchManager

  • All Implemented Interfaces:
    IWatchManager

    public class WatchManager
    extends Object
    implements IWatchManager
    This class manages watches. It allows watches to be associated with a string and removes watchers and their watches in addition to managing triggers.
    • Constructor Detail

      • WatchManager

        public WatchManager()
    • Method Detail

      • size

        public int size()
        Description copied from interface: IWatchManager
        Get the size of watchers.
        Specified by:
        size in interface IWatchManager
        Returns:
        the watchers number managed in this class.
      • addWatch

        public boolean addWatch​(String path,
                                Watcher watcher)
        Description copied from interface: IWatchManager
        Add watch to specific path.
        Specified by:
        addWatch in interface IWatchManager
        Parameters:
        path - znode path
        watcher - watcher object reference
        Returns:
        true if the watcher added is not already present
      • addWatch

        public boolean addWatch​(String path,
                                Watcher watcher,
                                WatcherMode watcherMode)
        Description copied from interface: IWatchManager
        Add watch to specific path.
        Specified by:
        addWatch in interface IWatchManager
        Parameters:
        path - znode path
        watcher - watcher object reference
        watcherMode - the watcher mode to use
        Returns:
        true if the watcher added is not already present
      • removeWatcher

        public void removeWatcher​(Watcher watcher)
        Description copied from interface: IWatchManager
        The entry to remove the watcher when the cnxn is closed.
        Specified by:
        removeWatcher in interface IWatchManager
        Parameters:
        watcher - watcher object reference
      • dumpWatches

        public void dumpWatches​(PrintWriter pwriter,
                                boolean byPath)
        Description copied from interface: IWatchManager
        String representation of watches. Warning, may be large!
        Specified by:
        dumpWatches in interface IWatchManager
        Parameters:
        pwriter - the writer to dump the watches
        byPath - iff true output watches by paths, otw output watches by connection
      • containsWatcher

        public boolean containsWatcher​(String path,
                                       Watcher watcher)
        Description copied from interface: IWatchManager
        Checks the specified watcher exists for the given path.
        Specified by:
        containsWatcher in interface IWatchManager
        Parameters:
        path - znode path
        watcher - watcher object reference
        Returns:
        true if the watcher exists, false otherwise
      • removeWatcher

        public boolean removeWatcher​(String path,
                                     Watcher watcher)
        Description copied from interface: IWatchManager
        Removes the specified watcher for the given path.
        Specified by:
        removeWatcher in interface IWatchManager
        Parameters:
        path - znode path
        watcher - watcher object reference
        Returns:
        true if the watcher successfully removed, false otherwise
      • getRecursiveWatchQty

        public int getRecursiveWatchQty()
        Description copied from interface: IWatchManager
        Return the current number of recursive watchers
        Specified by:
        getRecursiveWatchQty in interface IWatchManager
        Returns:
        qty