× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Gary L Peskin wrote:

Thread[] ta;
Thread.enumerate(ta);
for (int i = 0; i < ta.length; i++)
{
System.err.println("Thread " + i + " = " + ta[i] + "; daemon = " +
ta[i].isDaemon);
}

Interesting. Up until program.run(), I just have the one thread:
Thread 0 = Thread[main,5,main]; daemon = false

After program.run(), I have 5:
Thread 0 = Thread[main,5,main]; daemon = false
Thread 1 = Thread[AWT-Shutdown,5,main]; daemon = false
Thread 2 = Thread[AWT-Windows,6,main]; daemon = true
Thread 3 = Thread[AWT-EventQueue-0,6,main]; daemon = false
Thread 4 = Thread[AS400 Read Daemon-1,5,main]; daemon = true

and then, after disconnectAllServices(), I have 4:
Thread 0 = Thread[main,5,main]; daemon = false
Thread 1 = Thread[AWT-Shutdown,5,main]; daemon = false
Thread 2 = Thread[AWT-Windows,6,main]; daemon = true
Thread 3 = Thread[AWT-EventQueue-0,6,main]; daemon = false

That doesn't tell me a whole lot (a consequence, I suppose, of my not being a Java expert); does anybody else see anything?


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.