예제 #1
0
 @Override
 public void lastRowEmitted() throws Exception {
   p.postProcess();
 }
예제 #2
0
 @Override
 public void emitRow(Row row) throws Exception {
   if (row.isDeleted()) return;
   //    	System.out.println("  pass row to " + p);
   p.processRow(row);
 }