[appengine-java] Re: Adding Task-Queue Tasks in Batch?

2010-04-08 Thread Keith
I think the five limit still applies. If you want to run more than five you could run five tasks and structure them to enqueue further tasks once they run. On Apr 8, 4:41 am, Seth Ladd sethl...@gmail.com wrote: Thanks! If under a transaction, are tasks added via batch still constrained to 5

Re: [appengine-java] Re: Adding Task-Queue Tasks in Batch?

2010-04-08 Thread Seth Ladd
Exactly what I am doing now, thanks. :) On Thursday, April 8, 2010, Keith dunelmt...@googlemail.com wrote: I think the five limit still applies. If you want to run more than five you could run five tasks and structure them to enqueue further tasks once they run. On Apr 8, 4:41 am, Seth Ladd

[appengine-java] Re: Adding Task-Queue Tasks in Batch?

2010-04-07 Thread Seth Ladd
Thanks! If under a transaction, are tasks added via batch still constrained to 5 per txn? On Apr 6, 11:53 am, Keith dunelmt...@googlemail.com wrote: Fromhttp://code.google.com/appengine/docs/java/javadoc/com/google/appengi... add(java.lang.IterableTaskOptions taskOptions)           Submits

[appengine-java] Re: Adding Task-Queue Tasks in Batch?

2010-04-06 Thread Keith
From http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/labs/taskqueue/Queue.html add(java.lang.IterableTaskOptions taskOptions) Submits tasks to this queue. On Apr 6, 9:54 am, Seth Ladd sethl...@gmail.com wrote: Aloha, The docs for the Java implementation