All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.query.impl.LazyIterator Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.query.impl;

import java.io.IOException;

import net.jcip.annotations.NotThreadSafe;
import org.hibernate.search.query.engine.spi.DocumentExtractor;
import org.hibernate.search.query.engine.spi.EntityInfo;
import org.infinispan.commons.CacheException;

/**
 * Implementation for {@link org.infinispan.query.ResultIterator}. This loads the results only when required
 * and hence differs from {@link EagerIterator} which is the other implementation of ResultIterator.
 *
 * @author Navin Surtani
 * @author Marko Luksa
 * @author Ales Justin
 */
@NotThreadSafe
public class LazyIterator extends AbstractIterator {

   private final DocumentExtractor extractor;

   public LazyIterator(DocumentExtractor extractor, QueryResultLoader resultLoader, int fetchSize) {
      super(resultLoader, extractor.getFirstIndex(), extractor.getMaxIndex(), fetchSize);
      this.extractor = extractor;
   }

   @Override
   public void close() {
      extractor.close();
   }

   @Override
   protected EntityInfo loadEntityInfo(int index) {
      try {
         return extractor.extract(index);
      } catch (IOException e) {
         throw new CacheException("Cannot load result at index " + index, e);
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy