Package net.sf.katta.master

Examples of net.sf.katta.master.OperationWatchdog


  public OperationWatchdog moveOperationToWatching(MasterOperation masterOperation, List<OperationId> nodeOperationIds)
          throws InterruptedException {
    Element<MasterOperation> element = getFirstElement();
    // we don't use the persisted operation cause the given masterOperation can
    // have a changed state
    OperationWatchdog watchdog = new OperationWatchdog(element.getName(), masterOperation, nodeOperationIds);
    _zkClient.createPersistent(getWatchdogPath(element.getName()), watchdog);
    _zkClient.delete(getElementPath(element.getName()));
    return watchdog;
  }
View Full Code Here

TOP

Related Classes of net.sf.katta.master.OperationWatchdog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.