| 41 | return String.format("(%d:%d)", id, delta); |
| 42 | } |
| 43 | public static class EndTask extends DelayedTask { |
| 44 | EndTask(int delay) { super(delay); } |
| 45 | @Override public void run() { |
| 46 | sequence.forEach(dt -> |
| 47 | System.out.println(dt.summary())); |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | public class DelayQueueDemo { |
nothing calls this directly
no outgoing calls
no test coverage detected