org.infinispan.hotrod.impl.iteration.NoOpSegmentKeyTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
The newest version!
package org.infinispan.hotrod.impl.iteration;
import java.util.Set;
import org.infinispan.commons.configuration.ClassAllowList;
import org.infinispan.commons.util.IntSet;
/**
* @since 14.0
*/
class NoOpSegmentKeyTracker implements KeyTracker {
@Override
public boolean track(byte[] key, short status, ClassAllowList allowList) {
return true;
}
@Override
public void segmentsFinished(IntSet finishedSegments) {
}
@Override
public Set missedSegments() {
return null;
}
}