Package org.infinispan.query.clustered.commandworkers

Source Code of org.infinispan.query.clustered.commandworkers.CQLazyFetcher

package org.infinispan.query.clustered.commandworkers;

import org.infinispan.query.clustered.QueryBox;
import org.infinispan.query.clustered.QueryResponse;

/**
* CQLazyFetcher.
*
* Fetch a new result for a lazy iterator
*
* @author Israel Lacerra <israeldl@gmail.com>
* @since 5.1
*/
public class CQLazyFetcher extends ClusteredQueryCommandWorker {

   @Override
   public QueryResponse perform() {
      QueryBox box = getQueryBox();
      Object value = box.getValue(lazyQueryId, docIndex);
      return new QueryResponse(value);
   }

}
TOP

Related Classes of org.infinispan.query.clustered.commandworkers.CQLazyFetcher

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.