I have a long-lasting method in a Singleton Java EE 6 bean.
How could I see "from outside" whether that Singleton is currently busy?
|
|
|
you could within that method change the object attribute(flag), to indicate the method is under execution. from outside, you could do object.getBusyFlag() to decide. however if you are trying to make the method thread-safe, you could consider synchronized keyword. |
|||||
|
|
Kent is right. Moreover if the 'flag' is just a Boolean value, you can declare it as 'volatile' and don't use 'synchronized'. |
|||
|
|