Why is java.lang.Thread in the Google App Engine whitelist when it is not supported?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Thread is partially supported. For example, you can do
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. |
|||
|
|
|
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 |
|||
|
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. |
|||
|