What is the Max Thread.Sleep Time?

android, java, thread-safety

Solution

I think there is no maximum time for `Thread.sleep()`. Whatever time you enter, for that time the thread sleeps.

Problem

Can anyone tell me the Max sleep time in ms for `Thread.sleep(time);` for use in Android OS ?

Original source