Re: Timer AsyncCallback issue

2012-02-26 Thread JoseM
I think your issue might be that you are getting a lot of data back in your RPC call and the browser is frozen while it is processing the results. If this is the case maybe you should either send a smaller amount of data to the browser (maybe break up the RPC request into multiple smaller ones) or

Timer AsyncCallback issue

2012-02-25 Thread Peter D.
I have a timer set up to update an element on my UI periodically from a buffer. If the buffer grows too small, I make an RPC call which returns the next chunk of frames. However, I want the timer to continue updating the UI off the existing buffer while the RPC call is working. It seems that whe