Hi, I personally do it with a higher-level 3rd party package (Objectify) and it works.
Generally, my understanding is that you can associate transactionally the insertion of a task in a queue and a transaction on the datastore (whatever the interface to the datastore): if transaction commits, tasks is inserted and then executed.If transaction rolls back, then task is not inserted and not executed. regards didier On Jan 11, 6:45 pm, Fabrizio Accatino <[email protected]> wrote: > Hello, > > documentation tells I can insert a task in queue during a datastore > transaction.http://code.google.com/appengine/docs/java/taskqueue/overview.html#Ta... > > The example uses datastore low level api. Is there a way to do the same with > JDO? > > Thank you > > Fabrizio -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
