I am developing an application (on GAE) that needs a countdown timer and notifies the client side when the timer reaches zero.

To notify the client side i'm using GAE Channel API .

any ideas? (Considering GAE limitations. not using Thread or Timer from Java API).

link|improve this question
is there a reason the client can't do the countdown? what are you trying to accomplish? – Peter Recore Jan 9 '11 at 1:16
The problem is that I have to notify the clients when an server object expires. – Adriano Jan 10 '11 at 13:26
1  
If the server knows when the object will expire, why not just send the time-until-expiry along with the page, and let the client determine when it's expired? – Nick Johnson Jan 11 '11 at 23:41
1  
That's the idea did it using the GAE TaskQueue. – Adriano Jan 13 '11 at 18:54
feedback

2 Answers

up vote 1 down vote accepted

I don't know how much reliability/precision you need, anyway here are a couple of ideas:

  1. After saving the server local time on memcache with the respective client ID, send a "timer-start" message to the client through the Channel API handling it client-side via some Javascript counter. When the timer is over or client has completed its duties , call the server and do your business logic.

  2. Use the countdown parameter of the TaskQueue, and before sending the "timer start" message to the client, add a task with a given countdown. The added task after n seconds will be triggered and should send the "timer-over" message to the client.

link|improve this answer
feedback

Can't you just poll for the information from client side? Or you can make cron task that run's once a minute and send appropriate message.

depends on how often do you need to do this, whta prcision you need

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.