My question is can SwingWorker
's doInBackground
method be executed more than once, by difference instances of the same class?
For example, there is a class called ClientGUI
and there are 2 instances, ClientGUI1
and ClientGUI2
, will each of these instances be able to call the doInBackground
method of SwingWorker
at least once?