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