Re: trying to track GWT timers

2009-07-27 Thread davidRoe
just to follow up, I was able to override setTimeout and perform some tracking, record timer IDs and track those that expire, which left me with a single timer that always seems to be present upon shutdown. I am now running code that should close that timer as soon as the app knows it is

Re: trying to track GWT timers

2009-06-30 Thread Ian Bambury
Surely when you close the browser window (or navigate away) the timers are gone. Ian http://examples.roughian.com 2009/6/30 davidroe roe.da...@gmail.com I have a situation where I need to ensure that _every_ timer launched is closed upon exit, meaning I track each timer I create and ensure

Re: trying to track GWT timers

2009-06-30 Thread davidRoe
I had thought the same. I am running GWT code under MobileSafari on the iPhone and am seeing occasional program crashes on exit. the stack trace seems to indicate that a timer is being fired, and I believe that perhaps the UIWebView has disappeared by the time it runs code expecting it to be

trying to track GWT timers

2009-06-29 Thread davidroe
I have a situation where I need to ensure that _every_ timer launched is closed upon exit, meaning I track each timer I create and ensure that I cancel it when the application is about to close. is anyone aware of any timers that GWT launches that are, perhaps, allowed to self disintegrate,