Package RemoteCluster.CommunicationMessages

Examples of RemoteCluster.CommunicationMessages.JobInitInfo


      ){
    final String directorJobUuid = UUID.randomUUID().toString();
    jobStatus.setJobInfo(directorJobUuid, nodeGroupType, agentCommandType);
    if (asyncMode) {
     
      scheduler.tell(new JobInitInfo(nodeGroupType, agentCommandType, localMode, failOver, dataStore, maxConcNum, asyncMode, directorJobUuid, dataStore.get(nodeGroupType).getNodeDataMapValid().size()), ActorRef.noSender());
      GenericResponseFromDirector uuid = new GenericResponseFromDirector();
      uuid.directorJobUuid = directorJobUuid;
      return uuid;
      
    }
     
    scheduler.tell(new JobInitInfo(nodeGroupType, agentCommandType, localMode, failOver, dataStore, maxConcNum, asyncMode, directorJobUuid, dataStore.get(nodeGroupType).getNodeDataMapValid().size()), ActorRef.noSender());
    GenericResponseFromDirector uuid = new GenericResponseFromDirector();
    uuid.directorJobUuid = directorJobUuid;
   
    JobStatus.JobInfo jobInfo = jobStatus.getJobInfo(directorJobUuid);
    while (jobInfo!=null && jobInfo.state != JobStatus.State.gathered) {
View Full Code Here

TOP

Related Classes of RemoteCluster.CommunicationMessages.JobInitInfo

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.