can't understand the url function used in the google taskque api documentation

Posted by Bunny Rabbit on Stack Overflow See other posts from Stack Overflow or by Bunny Rabbit
Published on 2010-04-28T11:09:37Z Indexed on 2010/04/28 11:13 UTC
Read the original article Hit count: 191

Filed under:
|

import com.google.appengine.api.labs.taskqueue.Queue; import com.google.appengine.api.labs.taskqueue.QueueFactory; import static com.google.appengine.api.labs.taskqueue.TaskOptions.Builder.*;

// ... Queue queue = QueueFactory.getDefaultQueue(); queue.add(url("/worker").param("key", key))

in the code example given on the google task queue documentation page i can't understand the url("/worker") function they are calling in the queues.add() invocation .

© Stack Overflow or respective owner

Related posts about google-app-engine

Related posts about java