How to add an item into Google Cloud Tasks queue in Java?

903 Views Asked by At

Could anybody give me a hint how to add an item into Google Cloud Tasks queue in Java? https://cloud.google.com/tasks/docs/

Google has a very smooth description of their queues v1 https://cloud.google.com/appengine/docs/standard/java/taskqueue/pull/creating-tasks but nothing similar for a new beta Google Cloud Tasks.

I need simply to add an item into a queue with a specific tag and after to pull it from the queue by the oldest_tag() function.

Does anybody has an experience with Google Cloud Tasks?

2

There are 2 best solutions below

4
On BEST ANSWER

The v1 documentation page you references is specific for pull queues, which aren't (yet at least) supported by Cloud Tasks.

From The App Engine SDK versus the Cloud Tasks API (emphasis mine):

Some features are not yet available via the Cloud Tasks API:

0
On

There are two separate ways to access the Task service:

  • Using the App Engine SDK (App Engine standard first generation runtimes)
  • Using the Cloud Tasks API which is in beta (every body else, particularly second generation runtimes like Python 3.7 or App Engine flex). There are REST or gRPC- based APIs available. Currently the Cloud Tasks API supports only push-type queues. The Cloud Pub/Sub API can be used for many pull queue type use cases.