Why is java.lang.Thread in the Google App Engine whitelist when it is not supported?

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Thread is partially supported. For example, you can do

   Thread.sleep(1000);

However, App Engine doesn't allow you to create new thread in anyway. I guess it makes sense for the class to show up in whitelist.

link|improve this answer
feedback

Only Google (or their employees) can give you the real reason, but my guess is that there are methods in that Class that you may use (such as getStackTrace() or getContextClassLoader()).

link|improve this answer
sorry can you elaborate, what getSTackTrace() and getContextClassLoader() for..? – cometta Sep 7 '09 at 12:14
4  
@cometta he linked them to the javadocs – abyx Sep 7 '09 at 12:18
feedback

Your Answer

 
or
required, but never shown

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