I am looking at the App App Queue API for Java, and I find it difficult to associate this with my GWT application. If I would like to use the task queue to perform asynchronous processing, how can I do this using GWT.
As I see it, I need to send a server request, which will then perform a presentation in the task queue API. If I understood the task queue correctly, I would have to create another servlet to process from the task queue (whether it be a worker).
I am looking for 2 things:
- Will it be a working servlet (i.e. extends
HttpServlet )? If not, can someone give me an example of a “worker”? - Does it really make sense to use a task queue if I just want to send an asynchronous response for immediate execution? It seems that the GWT built-in RPC engine is enough.
source share