Details
Description
This component makes asynchronous processing on GAE possible using the task queueing API. Assuming the component will be named gtask, routes like the following can be defined.
from("servlet:/input") ... .to("gtask:default") // write to default task queue from("gtask:default") // install a web hook (worker) that is executed in the background ... .to("...")