|
Search the Tips
Threading - Page 4
|
61-62 of 62
Previous
Next |
|
How to Keep Track of Number of Threads or Connections
by DevX Pro
I have a server application listening for client
applets to connect. The server spawns a new thread each time
a connection to a client is established. I want to keep
track, i.e. count the number of clients connected
and output it to a textfield in a frame. I am
not sure how Java handles shared data among threads so my
question is: How does one keep track of the number of threads
or connections? I want the number of threads to be displayed in
a single frame; I tried something, but a new window is created
each time a new thread is spawned.
|
What is the Thread.interrupt()method's purpose?
by DevX Pro
What is the purpose of the Thread.interrupt()
method? I expect that if I call the interrupt()
method of a sleeping thread, an
InterruptedException will be thrown. Here is a
quick code sample showing my thoughts (please
forgive the formatting):*/
class Timer extends Thread {
public void run() {
for(int i = 0; i
I expect that when s.foo() is called, I
will see output resembling
Interrupted!
What am I missing?
|
|
61-62 of 62
Previous
Next |
|
|
|
|
|