Hi, I use fantasm to aggregate daily transaction amounts. http://code.google.com/p/fantasm/wiki/GettingStarted
This is how the current working state machine looks: Step-1) Class getCalendarDate -- returns a single date Step-2) Class QueryDB is a continuation class. -- returns transaction costs Step-3) Class Aggregate [Fan-in] -- Aggregates daily costs. Step-1 passes a date to step-2. Step-2 returns transaction details for the given date. Step-3 creates a DailyAggregate entity with the date as the entity name. This works great. _____________________________________________________________ What I want to do is make Step-1 getCalendarDate a continuation class I want to be able to aggregate a month's data in parallel. So for each date returned by Step-1, Step-2 kicks off a query [for this date]. This means that all 31 days in May are being queried simultaneously. How do I get ClassAggregate to fan in each day individually? Currently, when the fan in runs it aggregates all the data from Step-2 regardless which date is being queried. Regards Mike -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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?hl=en.
