// Lease only tasks tagged with "process"List<TaskHandle>tasks=q.leaseTasksByTag(3600,TimeUnit.SECONDS,numberOfTasksToLease,"process");// You can also specify a tag to lease via LeaseOptions passed to leaseTasks.
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-04-02 UTC。"],[[["Workers can lease tasks from a pull queue using the `leaseTasks()` method, which makes the task temporarily unavailable to other workers."],["Tasks can be tagged, and workers can then lease tasks based on these tags using `leaseTasksByTag()`, allowing for filtered task processing."],["Workers must delete tasks from the queue using `deleteTask()` after they have completed processing them; failure to do so may result in the task being picked up by another worker."],["Polling rates for leasing tasks should be regulated to avoid exceptions like `TransientFailureException` or `ApiDeadlineExceededException`, and if the polling is too frequent, only the first 10 requests will return results."],["The Cloud Console allows for the monitoring of tasks and queues, enabling users to view information about tasks and queues, as well as look for the *Pull* type within the queue."]]],[]]