Ejemplo n.º 1
0
 /// <summary>Close all child RRs.</summary>
 /// <exception cref="System.IO.IOException"/>
 public virtual void Close()
 {
     if (kids != null)
     {
         foreach (RecordReader <K, Writable> rr in kids)
         {
             rr.Close();
         }
     }
     if (jc != null)
     {
         jc.Close();
     }
 }