On Fri, Oct 1, 2010 at 1:41 PM, Damon Lundin <[email protected]> wrote:
> I'm not sure I entirely understand. Are you suggesting that I need to > convert all of my DeferredCommand calls to ones that use some new > native method implementation so I can wrap my callbacks in $entry? > No, if you are only using GWT APIs that handle the callback from the browser event loop then that is already taken care of. You didn't say what code you were using, so I thought you might be doing something yourself that needed to be wrapped. If you are only using GWT-supplied APIs, I am not sure how you aren't getting the uncaught exception handler called on those calls. Can you create a small repro case that illustrates the problem? I'm not sure how to cancel outstanding RPC calls if that's even possible. [unrelated] Define your async service interface with a return value of Request instead of void, and then you can call request.cancel() to terminate it. -- John A. Tamplin Software Engineer (GWT), Google -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
