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

Examples of com.google.appengine.tools.pipeline.impl.tasks.DelayedSlotFillTask


   */
  public static void registerDelayedValue(
      UpdateSpec spec, JobRecord generatorJobRecord, long delaySec, Slot slot) {
    Key rootKey = generatorJobRecord.getRootJobKey();
    QueueSettings queueSettings = generatorJobRecord.getQueueSettings();
    DelayedSlotFillTask task = new DelayedSlotFillTask(slot, delaySec, rootKey , queueSettings);
    spec.getFinalTransaction().registerTask(task);
  }
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.pipeline.impl.tasks.DelayedSlotFillTask

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.