Tried to run this code in App Engine but got Permission error

new java.util.Timer().schedule( 
            new java.util.TimerTask() {
                @Override
                public void run() {
                    // your code here
                    list.remove("coo");
                }
            }, 
            3000 
    );

The above code run periodically every 3 seconds.

I want to do the same in Google App Engine, but do not know how. I heard 
that we can useThreadManager or Runnable or something likes that.

So, can you give a very simple example of how to run a Thread inside Google 
Apple Engine?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3ce0b9b2-ce1b-44cf-9af3-1f63091dd352%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to