use of com.google.api.services.cloudtasks.v2beta2.CloudTasks in project java-docs-samples by GoogleCloudPlatform.
the class PullQueue method createTask.
// [START cloud_tasks_create_task]
/**
* Create a task for a given queue with a given payload.
*/
private static Task createTask(String project, String location, String queue) throws IOException {
// The name of the queue to use
String queueName = String.format("projects/%s/locations/%s/queues/%s", project, location, queue);
// Create the Cloud Tasks Client
CloudTasks client = createAuthorizedClient();
// Create the Task to put in the Queue
String message = "a message for the recipient";
String payload = BaseEncoding.base64().encode(message.getBytes());
Task task = new Task().setPullMessage(new PullMessage().setPayload(payload));
// Create the CreateTaskRequest
CreateTaskRequest request = new CreateTaskRequest().setTask(task);
// Execute the request and return the created Task
Task result = client.projects().locations().queues().tasks().create(queueName, request).execute();
System.out.println(String.format("Created task %s", task.getName()));
return result;
}
use of com.google.api.services.cloudtasks.v2beta2.CloudTasks in project java-docs-samples by GoogleCloudPlatform.
the class CreateTaskServlet method createTask.
// [START cloud_tasks_appengine_create_task]
/**
* Create a task for a given queue with a given payload.
*/
private static Task createTask(String project, String location, String queue, String payload) throws IOException {
// The name of the queue to use
String queueName = String.format("projects/%s/locations/%s/queues/%s", project, location, queue);
// Create the Cloud Tasks Client
CloudTasks client = createAuthorizedClient();
// Create the Task to put in the Queue
payload = BaseEncoding.base64().encode(payload.getBytes());
AppEngineHttpRequest postRequest = new AppEngineHttpRequest().setHttpMethod("POST").setRelativeUrl("/example_task_handler").setPayload(payload);
Task task = new Task().setAppEngineHttpRequest(postRequest);
// Create the CreateTaskRequest
CreateTaskRequest request = new CreateTaskRequest().setTask(task);
// Execute the request and return the created Task
Task result = client.projects().locations().queues().tasks().create(queueName, request).execute();
System.out.println(String.format("Created task %s", task.getName()));
return result;
}
use of com.google.api.services.cloudtasks.v2beta2.CloudTasks in project java-docs-samples by GoogleCloudPlatform.
the class PullQueue method acknowledgeTask.
/**
* Acknowledge a given task, which removes it from the queue.
*/
private static void acknowledgeTask(Task task) throws IOException {
// Create the Cloud Tasks Client
CloudTasks client = createAuthorizedClient();
// Create the AcknowledgeTaskRequest
AcknowledgeTaskRequest request = new AcknowledgeTaskRequest().setScheduleTime(task.getScheduleTime());
// Execute the request
client.projects().locations().queues().tasks().acknowledge(task.getName(), request).execute();
System.out.println(String.format("Acknowledged task %s", task.getName()));
}
use of com.google.api.services.cloudtasks.v2beta2.CloudTasks in project java-docs-samples by GoogleCloudPlatform.
the class PullQueue method pullTask.
// [END cloud_tasks_create_task]
// [START cloud_tasks_lease_and_acknowledge_task]
/**
* Pull a single task from a given queue and lease it for 10 minutes.
*/
private static Task pullTask(String project, String location, String queue) throws IOException {
// The name of the queue to use
String queueName = String.format("projects/%s/locations/%s/queues/%s", project, location, queue);
// Create the Cloud Tasks Client
CloudTasks client = createAuthorizedClient();
// Create the LeaseTasksRequest
LeaseTasksRequest request = new LeaseTasksRequest().setMaxTasks(1).setLeaseDuration("600s").setResponseView("FULL");
// Execute the request and return the pulled task
LeaseTasksResponse response = client.projects().locations().queues().tasks().lease(queueName, request).execute();
return response.getTasks().get(0);
}
Aggregations