コード例 #1
0
 @Override
 public PTableType<K, V> getPTableType() {
   return source.getTableType();
 }
コード例 #2
0
 @Override
 public PType<Pair<K, V>> getPType() {
   return source.getType();
 }
コード例 #3
0
 public InputTable(TableSource<K, V> source, MRPipeline pipeline) {
   super(source.toString());
   this.source = source;
   this.pipeline = pipeline;
   this.asCollection = new InputCollection<Pair<K, V>>(source, pipeline);
 }