Trying to learn from Google's tutorial on Queues and Backends: http://googcloudlabs.appspot.com/codelabexercise8.html
The part I don't understand is this, specifically the TaskOptions methods of param("xml", data) and header("Host", backend blah blah). What is the first and second argument for in param()? In header, how do I specifically point to instance #2 (if I have 5 of those setup) of the "order-backend"?
// Create Task and push it into Task Queue
Queue queue = QueueFactory.getQueue("OrderQueue");
Queue queue = QueueFactory.getQueue("OrderQueue");
TaskOptions taskOptions = TaskOptions.Builder.withUrl("/createOrder")
param("xml", data)
.header("Host", BackendServiceFactory.getBackendService().getBackendAddress("order-backend"))
.method(Method.POST);
queue.add(taskOptions);
Thanks!