Ejemplo n.º 1
0
 /// <summary>
 /// Return the key for the current join or the value at the top of the
 /// RecordReader heap.
 /// </summary>
 public virtual K Key()
 {
     if (jc.HasNext())
     {
         return(jc.Key());
     }
     if (!q.IsEmpty())
     {
         return(q.Peek().Key());
     }
     return(null);
 }