464748495051525354
public EventInfo waitForFinish() throws InterruptedException { this.isWaiting = true; this.markForCleanUp = false; this.lock.wait(); this.isWaiting = false; final EventInfo object = this.eventInfo; this.eventInfo = null; return object; }