Recursive problem...
- by Chronos
Guys,
I'm new to java and multithreading..... and I have a following problem:
I have two classes running in two different threads. Class A and Class B.
Class A has the method "onNewEvent()". Once that method is invoked, it will ask class B to do some work. As soon as B finishes the work it invokes onJobDone() method of the class A.
Now... here…