What method is used to create the daemon thread?
the Thread.setDaemon() has to be invoked. It takes one
boolean param indicating if the thread is a daemon thread
or not. the setDaemon() has to invoked before the start()
method is called on the thread, else an
IllegalThreadStateException is throw indicating that the
thread is active and its daemon state cannot be altered.
| Is This Answer Correct ? | 5 Yes | 0 No |
Is System.err.println(""Statement"); is execute the output on console . Example: System.err.println("Hello JAVA");
Can I run seam outside of jboss as?
Which component handles cluster communication in jboss?
What is chat area? Explain.
What is meant by multi-threading?
Why threads will block on I/O?
What is a convertor?
what is the port number of RMI?
what is the Remote Stub?
Define the remote interface?
Difference between new operator and class.forname().newinstance()?
How to synchronize jsp page?