Package org.apache.flink.runtime.execution

Examples of org.apache.flink.runtime.execution.CancelTaskException


          }
        }
      }
      else if (lookupResponse.isJobAborting()) {
        if (reportException) {
          throw new CancelTaskException();
        } else {
          return null;
        }
      }
      else if (lookupResponse.receiverNotFound()) {
View Full Code Here


        cpTasks.put(e.getKey(), cp);
      }
      env.addCopyTasksForCacheFile(cpTasks);
     
      if (!task.startExecution()) {
        throw new CancelTaskException();
      }
   
      // final check that we can go (we do this after the registration, so the the "happen's before"
      // relationship ensures that either the shutdown removes this task, or we are aware of the shutdown
      if (shutdownStarted.get() || this.registeredId == null) {
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.execution.CancelTaskException

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.