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