4
votes

I have a button "addCashier" which is creating a thread called "Cashier" now this thread is just simply generating orders every 4 seconds, a while(true) loop in the run() method of the thread. All is good there, but now I want to add a button to simulate cashiers logging off. I added a boolean variable to my while loop onDuty and a public function logOff() which sets this onDuty bool to false to get me out of the run's while loop. My problem now is from my gui class how can I call a function on a specific thread? Each cashier thread has been generated at runtime so I don't know their names.

I hope I made sense. Thanks in advance.

4
It depends how you created the thread. Can you reference it through an array?Nick Brunt
hmmm I didn't know you could store thread objects in an array I'll take a look at that approach.mikeyP
@mikeyP - you could also keep them in a HashMap<String, Thread>; you mention something about them having "names" which would be the (String) keys.Brian Roach
@BrianRoach Ok, that makes sense I like the Hash implementation, but what would the thread reference be would it be myThread in this bit of code: Thread myThread; Cahier (String name) { myThread = new Thread( this ); myThread.start(); }mikeyP
@mikeyP, thats correct - myThread is your reference - but you also need to set the name of the Thread explicitly by calling setName(String name) method on your Thread reference for each thread you create. Then add the two ( the name and the reference ) into a HashMap. Use the Name as your handle to get your thread later to stop the particular thread.Bhaskar

4 Answers

8
votes
Thread t = CashierThread();  //keep the reference to thread somewhere...

Now instead of a boolean property use built-in interrupted flag:

public void run() {
  while(!Thread.currentThread().isInterrupted()) {
    //...
  }
}

When you want to turn of the thread by clicking on a button simply call:

t.interrupt();

Of course you need to have access to t variable from the client code.

1
votes

You can store each thread's reference into a HashMap - along with its id or Name as the key. Later when you want to deal with one particular Cashier thread , use the Name or id to fetch the corresponding Thread from the HashMap and call the appropriate logOff() method on it.

1
votes

If collecting the reference to all the threads is a problem, One other way could be having a public static synchronized HashMap that has the threadId(random number assigned at runtime to each thread) as the key and the boolean as the value. You can modify the while loop to pick the corresponding boolean value from this centralized Map. This would let you log-off a particular cashier.

1
votes

You can keep a reference of the Thread object somewhere so that u can call threadObj.logOff()

If you are not willing to do that then while creating a thred u can assign a unique name to the thread.

public void run ()
{
    this.setName(strCashireID);
    ......
}

At runtime, u can get the thread by:

Thread getThread(String strCashireID) {
   ThreadGroup threadGroup = Thread.currentThread( ).getThreadGroup( );
   Threads[] threads = new Thread[ threadGroup.activeCount() ];
   threadGroup.enumerate(threads);
   for (int nIndex=0; nIndex<threads.length; nIndex++) {
      if(threads[nIndex] != null && threads.getName().equals(strCashireID) {
         return threads[nIndex];
      }
   }
   return null;
}

I'll still suggest that u store the thread objects in a hash map instead of enumerating them at runtime.