thread status jdk 1.3  
Author Message
palmis





PostPosted: 2006-1-29 17:57:00 Top

java-programmer, thread status jdk 1.3 How can I know thread status with jdk 1.3?
It doesn't have thread.getStatus().
How can I do?

Thanks
Palmis

 
Sanjay





PostPosted: 2006-1-30 0:19:00 Top

java-programmer >> thread status jdk 1.3
palmis wrote:
> How can I know thread status with jdk 1.3?
> It doesn't have thread.getStatus().

Isn't it thread.getState()

but this API is
Since:
1.5

I can think of isAlive() API in previous versions.

> How can I do?
>
> Thanks
> Palmis

Sanjay

 
palmis





PostPosted: 2006-2-1 16:10:00 Top

java-programmer >> thread status jdk 1.3 Thank you very much.

Palmis