Package com.twitter.hraven

Examples of com.twitter.hraven.FlowKey


      } else {
        appId = "Unknown_"+UUID.randomUUID();
      }
    }

    flowKey = new FlowKey(cluster, username, appId, System.currentTimeMillis());

    // create a new flow queue entry
    UUID uuid = UUID.randomUUID();
    flowQueueKey = new FlowQueueKey(cluster, Flow.Status.RUNNING,
        System.currentTimeMillis(), uuid.toString());
View Full Code Here


    return workflowEvents;
  }

  private static FlowKey toFlowKey(WorkflowId id) {
    return new FlowKey(id.getCluster(), id.getUserId(), id.getAppId(), id.getRunId());
  }
View Full Code Here

TOP

Related Classes of com.twitter.hraven.FlowKey

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.