Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 9 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.

share|improve this answer

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()).

share|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

If jn.Thread was not whitelisted then any applications that make calls to Thread methods would fail. It's not supported because you cannot create your own threads using the jn.Thread class directly. However you can create threads using the app engine thread API.

share|improve this answer
Hi, thank your info, then how do we run the runnable by using google app API? you have any idea? – GMsoF Nov 14 '12 at 3:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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