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