On Thu, Jan 19, 2012 at 5:13 AM, André Pankraz <[email protected]> wrote: > So my first question for such fire-and-forget async methods is: How do I > handle errors: even in RDBMS environment.
Keep in mind that async operations are not really "fire and forget". They're "fire and forget until the end of your request". Pretend there is a wrapper around your request method that completes any pending async operations immediately after you return - there is no disadvantage to completing them yourself (checking for error) yourself at the end. Jeff -- 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.
