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

org.infinispan.client.hotrod.impl.iteration.NoOpSegmentKeyTracker Maven / Gradle / Ivy

package org.infinispan.client.hotrod.impl.iteration;

import java.util.Set;

/**
 * @author gustavonalle
 * @since 8.0
 */
class NoOpSegmentKeyTracker implements KeyTracker {

   @Override
   public boolean track(byte[] key, short status) {
      return true;
   }

   @Override
   public void segmentsFinished(byte[] finishedSegments) {
   }

   @Override
   public Set missedSegments() {
      return null;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy