Home | History | Annotate | Download | only in util

Lines Matching refs:queue

16 import com.google.appengine.api.taskqueue.Queue;
23 /** TaskQueueHelper, a helper class for interacting with App Engine Task Queue API. */
29 * Add the list of tasks to the provided queue.
31 * @param queue The task queue in which to insert the tasks.
34 public static void addToQueue(Queue queue, List<TaskOptions> tasks) {
39 queue.addAsync(puts);
42 logger.log(Level.SEVERE, "Too many tasks batched in the task queue API.");
47 queue.addAsync(puts);