I'm searching a number of calendars at once. My naive implementation is iterative & synchronous. I then thought to myself that I should be doing these service calls asynchronously. Even better, wouldn't it be great to avoid an iterative service call loop... I found a section in the developer's guide with a code example for the batch requests. Here is what I'd love to be able to do in Java:
Query myQuery = new Query(feedUrl); myQuery.setFullTextQuery(searchTerms); CalendarEventFeed batchRequest = new CalendarEventFeed(); batchRequest.getEntries().add(myQuery); <---- compilation error (invalid parameter) Is there any way of doing full-text search in batch? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" 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-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
