All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.ringleader.watcher.WatcherFactory Maven / Gradle / Ivy

There is a newer version: 0.1.10
Show newest version
package com.hubspot.ringleader.watcher;

import com.google.common.base.Supplier;
import org.apache.curator.framework.CuratorFramework;

public class WatcherFactory {
  private final Supplier curatorSupplier;

  public WatcherFactory(Supplier curatorSupplier) {
    this.curatorSupplier = curatorSupplier;
  }

  public PersistentWatcher dataWatcher(String path) {
    return new PersistentWatcher(curatorSupplier, path);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy