How can I send custom events from one object to another?
I have 2 Working objects of same type, main class uses worker.
if some condition is true in worker1 it should send ea event to the main class that will switch the workers.
This is my scenario:
class Worker1 extends Base{
public void DoSomeWork(Arg argument){
if(someCondition=true){
SendEvent();
}
}
}
class MainClassThatUsesWorker{
Base worker = new Worker1();
public void EventArrived(){
worker = new Worker2();
}
public void UseWorKer(){
worker.DoSomeWork();
}
}