Interface Queue (2.0.0)

public interface Queue

Queue is used to manage a task queue.

Implementations of this interface must be threadsafe.

Queues are transactional. If a datastore transaction is in progress when #add() or #add(TaskOptions) is invoked, the task will only be added to the queue if the datastore transaction successfully commits. If you want to add a task to a queue and have that operation succeed or fail independently of an existing datastore transaction you can invoke #add(Transaction, TaskOptions) with a null transaction argument. Note that while the addition of the task to the queue can participate in an existing transaction, the execution of the task cannot participate in this transaction. In other words, when the transaction commits you are guaranteed that your task will be added and run, not that your task executed successfully.

Queues may be configured in either push or pull mode, but they share the same interface. However, only tasks with TaskOptions.Method#PULL may be added to pull queues. The tasks in push queues must be added with one of the other available methods.

Pull mode queues do not automatically deliver tasks to the application. The application is required to call leaseTasks to acquire a lease on the task and process them explicitly. Attempting to call leaseTasks on a push queue causes a InvalidQueueModeException to be thrown. When the task processing has finished processing a task that is leased, it should call #deleteTask(String). If deleteTask is not called before the lease expires, the task will again be available for lease.

Queue mode can be switched between push and pull. When switching from push to pull, tasks will stay in the task queue and are available for lease, but url and headers information will be ignored when returning the tasks. When switching from pull to push, existing tasks will remain in the queue but will fail on auto-execution because they lack a url. If the queue mode is once again changed to pull, these tasks will eventually be available for lease.

Static Fields

DEFAULT_QUEUE

public static final String DEFAULT_QUEUE

The default queue name.

Field Value
TypeDescription
String

DEFAULT_QUEUE_PATH

public static final String DEFAULT_QUEUE_PATH

The default queue path.

Field Value
TypeDescription
String

Methods

add()

public abstract TaskHandle add()

Submits a task to this queue with an auto generated name with default options.

This method is similar to calling #add(TaskOptions) with a TaskOptions object returned by TaskOptions.Builder#withDefaults().

Returns
TypeDescription
TaskHandle

A TaskHandle.

add(Transaction txn, TaskOptions taskOptions)

public abstract TaskHandle add(Transaction txn, TaskOptions taskOptions)

Submits a task to this queue in the provided Transaction.

A task is added if and only if the transaction is applied successfully.

Parameters
NameDescription
txnTransaction

an enclosing Transaction or null, if not null a task cannot be named.

taskOptionsTaskOptions

The definition of the task.

Returns
TypeDescription
TaskHandle

A TaskHandle.

add(Transaction txn, Iterable<TaskOptions> taskOptions)

public abstract List<TaskHandle> add(Transaction txn, Iterable<TaskOptions> taskOptions)

Submits tasks to this queue in the provided Transaction.

The tasks are added if and only if the transaction is applied successfully.

Parameters
NameDescription
txnTransaction

an enclosing Transaction or null, if not null a task cannot be named.

taskOptionsIterable<TaskOptions>

An iterable over task definitions.

Returns
TypeDescription
List<TaskHandle>

A list containing a TaskHandle for each added task.

add(TaskOptions taskOptions)

public abstract TaskHandle add(TaskOptions taskOptions)

Submits a task to this queue.

Parameter
NameDescription
taskOptionsTaskOptions

The definition of the task.

Returns
TypeDescription
TaskHandle

A TaskHandle.

add(Iterable<TaskOptions> taskOptions)

public abstract List<TaskHandle> add(Iterable<TaskOptions> taskOptions)

Submits tasks to this queue.

Submission is not atomic i.e. if this method throws then some tasks may have been added to the queue.

Parameter
NameDescription
taskOptionsIterable<TaskOptions>

An iterable over task definitions.

Returns
TypeDescription
List<TaskHandle>

A list containing a TaskHandle for each added task.

addAsync()

public abstract Future<TaskHandle> addAsync()

Asynchronously submits a task to this queue with an auto generated name with default options.

This method is similar to calling #addAsync(TaskOptions) with a TaskOptions object returned by TaskOptions.Builder#withDefaults().

Returns
TypeDescription
Future<TaskHandle>

A Future with a result type of TaskHandle.

addAsync(Transaction txn, TaskOptions taskOptions)

public abstract Future<TaskHandle> addAsync(Transaction txn, TaskOptions taskOptions)

Asynchronously submits a task to this queue in the provided Transaction.

A task is added if and only if the transaction is applied successfully.

Parameters
NameDescription
txnTransaction

an enclosing Transaction or null, if not null a task cannot be named.

taskOptionsTaskOptions

The definition of the task.

Returns
TypeDescription
Future<TaskHandle>

A Future with a result type of TaskHandle.

addAsync(Transaction txn, Iterable<TaskOptions> taskOptions)

public abstract Future<List<TaskHandle>> addAsync(Transaction txn, Iterable<TaskOptions> taskOptions)

Asynchronously submits tasks to this queue in the provided Transaction.

The tasks are added if and only if the transaction is applied successfully.

Parameters
NameDescription
txnTransaction

an enclosing Transaction or null, if not null a task cannot be named.

taskOptionsIterable<TaskOptions>

An iterable over task definitions.

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list containing a TaskHandle for each added task.

addAsync(TaskOptions taskOptions)

public abstract Future<TaskHandle> addAsync(TaskOptions taskOptions)

Asynchronously submits a task to this queue.

Parameter
NameDescription
taskOptionsTaskOptions

The definition of the task.

Returns
TypeDescription
Future<TaskHandle>

A Future with a result type of TaskHandle.

addAsync(Iterable<TaskOptions> taskOptions)

public abstract Future<List<TaskHandle>> addAsync(Iterable<TaskOptions> taskOptions)

Asynchronously submits tasks to this queue.

Submission is not atomic i.e. if this method fails then some tasks may have been added to the queue.

Parameter
NameDescription
taskOptionsIterable<TaskOptions>

An iterable over task definitions.

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list containing a TaskHandle for each added task.

deleteTask(TaskHandle taskHandle)

public abstract boolean deleteTask(TaskHandle taskHandle)

Deletes a task from this Queue. Task is identified by a TaskHandle.

Parameter
NameDescription
taskHandleTaskHandle

handle of the task to delete.

Returns
TypeDescription
boolean

True if the task was successfully deleted. False if the task was not found or was previously deleted.

deleteTask(String taskName)

public abstract boolean deleteTask(String taskName)

Deletes a task from this Queue. Task is identified by taskName.

Parameter
NameDescription
taskNameString

name of the task to delete.

Returns
TypeDescription
boolean

True if the task was successfully deleted. False if the task was not found or was previously deleted.

deleteTask(List<TaskHandle> taskHandles)

public abstract List<Boolean> deleteTask(List<TaskHandle> taskHandles)

Deletes a list of tasks from this Queue. The tasks are identified by a list of TaskHandles. This method supports deleting up to 1000 tasks.

Parameter
NameDescription
taskHandlesList<TaskHandle>

list of handles of tasks to delete.

Returns
TypeDescription
List<Boolean>

List<Boolean> that represents the result of deleting each task in the same order as the input handles. True if a task was successfully deleted. False if the task was not found or was previously deleted.

deleteTaskAsync(TaskHandle taskHandle)

public abstract Future<Boolean> deleteTaskAsync(TaskHandle taskHandle)

Asynchronously deletes a task from this Queue. Task is identified by a TaskHandle.

Parameter
NameDescription
taskHandleTaskHandle

handle of the task to delete.

Returns
TypeDescription
Future<Boolean>

A Future whose result is True if the task was successfully deleted, False if the task was not found or was previously deleted.

deleteTaskAsync(String taskName)

public abstract Future<Boolean> deleteTaskAsync(String taskName)

Asynchronously deletes a task from this Queue. Task is identified by taskName.

Parameter
NameDescription
taskNameString

name of the task to delete.

Returns
TypeDescription
Future<Boolean>

A Future whose result is True if the task was successfully deleted, False if the task was not found or was previously deleted.

deleteTaskAsync(List<TaskHandle> taskHandles)

public abstract Future<List<Boolean>> deleteTaskAsync(List<TaskHandle> taskHandles)

Asynchronously deletes a list of tasks from this Queue. The tasks are identified by a list of TaskHandles. This method supports deleting up to 1000 tasks.

Parameter
NameDescription
taskHandlesList<TaskHandle>

list of handles of tasks to delete.

Returns
TypeDescription
Future<List<Boolean>>

A Future whose result is a List<Boolean> that represents the result of deleting each task in the same order as the input handles. True if a task was successfully deleted. False if the task was not found or was previously deleted.

fetchStatistics()

public abstract QueueStatistics fetchStatistics()

Obtain statistics for this Queue.

Returns
TypeDescription
QueueStatistics

The current QueueStatistics for this queue.

fetchStatisticsAsync(@Nullable Double deadlineInSeconds)

public abstract Future<QueueStatistics> fetchStatisticsAsync(@Nullable Double deadlineInSeconds)

Asynchronously obtains statistics for this Queue.

Parameter
NameDescription
deadlineInSeconds@org.checkerframework.checker.nullness.qual.Nullable java.lang.Double

the maximum duration, in seconds, that the fetch statistics request can run. A default deadline will be used if null is supplied.

Returns
TypeDescription
Future<QueueStatistics>

A Future with a result type of QueueStatistics.

getQueueName()

public abstract String getQueueName()

Returns the queue name.

Returns
TypeDescription
String

leaseTasks(LeaseOptions options)

public abstract List<TaskHandle> leaseTasks(LeaseOptions options)

Leases tasks from this queue, with lease period and other options specified by options. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested.

If options specifies a tag, only tasks having that tag will be returned. If options specifies no tag, but does specify groupByTag, only tasks having the same tag as the task with earliest eta will be returned.

It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameter
NameDescription
optionsLeaseOptions

Specific options for this lease request

Returns
TypeDescription
List<TaskHandle>

A list of TaskHandle for each leased task.

leaseTasks(long lease, TimeUnit unit, long countLimit)

public abstract List<TaskHandle> leaseTasks(long lease, TimeUnit unit, long countLimit)

Leases up to countLimit tasks from this queue for a period specified by lease and unit. If fewer tasks than countLimit are available, all available tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested. It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

Returns
TypeDescription
List<TaskHandle>

A list of TaskHandle for each leased task.

leaseTasksAsync(LeaseOptions options)

public abstract Future<List<TaskHandle>> leaseTasksAsync(LeaseOptions options)

Asynchronously leases tasks from this queue, with lease period and other options specified by options. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested.

If options specifies a tag, only tasks having that tag will be returned. If options specifies no tag, but does specify groupByTag, only tasks having the same tag as the task with earliest eta will be returned.

It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameter
NameDescription
optionsLeaseOptions

Specific options for this lease request

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list of TaskHandle for each leased task.

leaseTasksAsync(long lease, TimeUnit unit, long countLimit)

public abstract Future<List<TaskHandle>> leaseTasksAsync(long lease, TimeUnit unit, long countLimit)

Asynchronously leases up to countLimit tasks from this queue for a period specified by lease and unit. If fewer tasks than countLimit are available, all available tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested. It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list of TaskHandle for each leased task.

leaseTasksByTag(long lease, TimeUnit unit, long countLimit, String tag)

public abstract List<TaskHandle> leaseTasksByTag(long lease, TimeUnit unit, long countLimit, String tag)

Leases up to countLimit tasks from this queue for a period specified by lease and unit, having tag tag. If tag is null, tasks having the same tag as the task with earliest eta will be returned. If fewer such tasks than countLimit are available, all available such tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested.

It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

tagString

User defined String tag required for returned tasks. If null, the tag of the task with earliest eta will be used.

Returns
TypeDescription
List<TaskHandle>

A list of TaskHandle for each leased task.

leaseTasksByTagAsync(long lease, TimeUnit unit, long countLimit, String tag)

public abstract Future<List<TaskHandle>> leaseTasksByTagAsync(long lease, TimeUnit unit, long countLimit, String tag)

Asynchronously leases up to countLimit tasks from this queue for a period specified by lease and unit, having tag tag. If tag is null, tasks having the same tag as the task with earliest eta will be returned. If fewer such tasks than countLimit are available, all available such tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested.

It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

tagString

User defined String tag required for returned tasks. If null, the tag of the task with earliest eta will be used.

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list of TaskHandle for each leased task.

leaseTasksByTagBytes(long lease, TimeUnit unit, long countLimit, byte[] tag)

public abstract List<TaskHandle> leaseTasksByTagBytes(long lease, TimeUnit unit, long countLimit, byte[] tag)

Leases up to countLimit tasks from this queue for a period specified by lease and unit, having tag tag. If tag is null, tasks having the same tag as the task with earliest eta will be returned. If fewer such tasks than countLimit are available, all available such tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested. It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

tagbyte[]

User defined tag required for returned tasks. If null, the tag of the task with earliest eta will be used.

Returns
TypeDescription
List<TaskHandle>

A list of TaskHandle for each leased task.

leaseTasksByTagBytesAsync(long lease, TimeUnit unit, long countLimit, byte[] tag)

public abstract Future<List<TaskHandle>> leaseTasksByTagBytesAsync(long lease, TimeUnit unit, long countLimit, byte[] tag)

Asynchronously leases up to countLimit tasks from this queue for a period specified by lease and unit, having tag tag. If tag is null, tasks having the same tag as the task with earliest eta will be returned. If fewer such tasks than countLimit are available, all available such tasks in this Queue will be returned. The available tasks are those in the queue having the earliest eta such that eta is prior to the time at which the lease is requested. It is guaranteed that the leased tasks will be unavailable for lease to others in the lease period. You must call deleteTask to prevent the task from being leased again after the lease period. This method supports leasing a maximum of 1000 tasks for no more than one week. If you generate more than 10 LeaseTasks requests per second, only the first 10 requests will return results. The others will return no results.

Parameters
NameDescription
leaselong

Number of units in the lease period

unitTimeUnit

Time unit of the lease period

countLimitlong

maximum number of tasks to lease

tagbyte[]

User defined tag required for returned tasks. If null, the tag of the task with earliest eta will be used.

Returns
TypeDescription
Future<List<TaskHandle>>

A Future whose result is a list of TaskHandle for each leased task.

modifyTaskLease(TaskHandle taskHandle, long lease, TimeUnit unit)

public abstract TaskHandle modifyTaskLease(TaskHandle taskHandle, long lease, TimeUnit unit)

Modify the lease of the specified task in this Queue for a period of time specified by lease and unit. A lease time of 0 will relinquish the lease on the task and make it available to be leased by calling leaseTasks.

Parameters
NameDescription
taskHandleTaskHandle

handle of the task that is having its lease modified.

leaselong

Number of units in the lease period.

unitTimeUnit

Time unit of the lease period.

Returns
TypeDescription
TaskHandle

Updated TaskHandle with the new lease period.

purge()

public abstract void purge()

Clears all the tasks in this Queue. This function returns immediately. Some delay may apply on the server before the Queue is actually purged. Tasks being executed at the time the purge call is made will continue executing, other tasks in this Queue will continue being dispatched and executed before the purge call takes effect.