Example #1
0
 protected internal override bool FetchNext()
 {
     try
     {
         while (_seeker.next())
         {
             KEY key = _seeker.get().key();
             if (AcceptValues(key.asValues()))
             {
                 return(next(key.EntityId));
             }
         }
         return(false);
     }
     catch (IOException e)
     {
         throw new UncheckedIOException(e);
     }
 }