Package com.google.appengine.tools.pipeline.impl.model

Examples of com.google.appengine.tools.pipeline.impl.model.JobRecord


  @Override
  public void deletePipeline(Key rootJobKey, boolean force, boolean async)
      throws NoSuchObjectException, IllegalStateException {

    if (!force) {
      JobRecord rootJobRecord = queryJob(rootJobKey, JobRecord.InflationType.NONE);
      switch (rootJobRecord.getState()) {
        case FINALIZED:
        case STOPPED:
          break;
        default:
          throw new IllegalStateException("Pipeline is still running: " + rootJobRecord);
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.pipeline.impl.model.JobRecord

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.