org.infinispan.client.hotrod.impl.operations.IterationNextResponse Maven / Gradle / Ivy
package org.infinispan.client.hotrod.impl.operations;
import java.util.List;
import java.util.Map.Entry;
import org.infinispan.commons.util.IntSet;
/**
* @author gustavonalle
* @since 8.0
*/
public class IterationNextResponse {
private final short status;
private final List> entries;
private final IntSet completedSegments;
private final boolean hasMore;
public IterationNextResponse(short status, List> entries, IntSet completedSegments, boolean hasMore) {
this.status = status;
this.entries = entries;
this.completedSegments = completedSegments;
this.hasMore = hasMore;
}
public boolean hasMore() {
return hasMore;
}
public List> getEntries() {
return entries;
}
public short getStatus() {
return status;
}
public IntSet getCompletedSegments() {
return completedSegments;
}
}