All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.queue4gae.queue.QueueService Maven / Gradle / Ivy

Go to download

Queue4GAE is a Java wrapper for the TaskQueueService included in Google AppEngine.

There is a newer version: 1.4
Show newest version
package org.queue4gae.queue;

/**
 * Makes the request to TaskQueueService
 */
public interface QueueService {

    /** the URL that receives queue tasks */
    public static final String TASK_URL = "queue4gae.taskUrl";

    /**
     * Post the task in a queue for a deferred execution
     */
    public void post(Task task);

    /**
     * Execute the task in the current Thread.
     */
    void run(Task task);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy