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

org.infinispan.persistence.sifs.EntryInfo Maven / Gradle / Ivy

package org.infinispan.persistence.sifs;

/**
 * @author Radim Vansa <[email protected]>
 */
public class EntryInfo extends EntryPosition {
   public final short numRecords;
   public final int segment;

   public EntryInfo(int file, int offset, short numRecords, int segment) {
      super(file, offset);
      this.numRecords = numRecords;
      this.segment = segment;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy