(final Continuation<T, ?> c)
| 866 | abstract class Continuation<T, R> extends Promise<R> implements WaitQueue<T> { |
| 867 | |
| 868 | @Override |
| 869 | public final WaitQueue<T> add(final Continuation<T, ?> c) { |
| 870 | return new WaitQueueHeadTail<>(c, this); |
| 871 | } |
| 872 | |
| 873 | @Override |
| 874 | public final void forward(final Promise<T> target) { |
nothing calls this directly
no outgoing calls
no test coverage detected