Exemplo n.º 1
0
 public void _end() throws Exception {
   for (StreamDestination<T> dest : pipes) {
     dest.end();
   }
 }
Exemplo n.º 2
0
 public void _data(T value) throws Exception {
   for (StreamDestination<T> dest : pipes) {
     dest.data(value);
   }
 }