- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
@Override
public void run() {
while (true) {
try {
if (this.getTime() == this.peek().getTime()) {
this.pop().run();
}
Thread.sleep(1000);
} catch (final InterruptedException e) {
break;
}
}
}