Package com.twitter.ambrose.model

Examples of com.twitter.ambrose.model.WorkflowSummary


  }

  /** Generates a new instance from an hRaven {@link Flow}. */
  private static WorkflowSummary toWorkflowSummary(Flow flow) {
    WorkflowId id = toWorkflowId(flow);
    return new WorkflowSummary(id.toId(), flow.getUserName(), flow.getFlowName(),
        Status.valueOf(flow.getQueueKey().getStatus().name()), flow.getProgress(),
        id.getTimestamp());
  }
View Full Code Here

TOP

Related Classes of com.twitter.ambrose.model.WorkflowSummary

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.