| 1 | package io.trane.future; |
| 2 | |
| 3 | interface WaitQueue<T> { |
| 4 | |
| 5 | WaitQueue<T> add(Continuation<T, ?> c); |
| 6 | |
| 7 | void flush(Future<T> result); |
| 8 | |
| 9 | void forward(Promise<T> target); |
| 10 | } |
| 11 | |
| 12 | final class WaitQueueHeadTail<T> implements WaitQueue<T> { |
| 13 |
no outgoing calls
no test coverage detected
searching dependent graphs…