Example #1
0
 @Override
 public void execute(Runnable task) throws InterruptedException {
   head.execute(task);
 }
Example #2
0
 @Override
 public Value<R> send(Value<M> m) throws InterruptedException {
   return tail.send(head.send(m));
 }