Interface SegmentIdFactory
-
public interface SegmentIdFactoryA factory forSegmentIdgiven their representation in MSB/LSB longs.An instance of this class is used by the
SegmentTrackerto delegate the creation ofSegmentIds to its caller, that usually is aSegmentStore. This way, theSegmentStoremay attach additional, implementation-dependent information to the returnedSegmentIdin a way that is transparent to the implementation of theSegmentTracker.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull SegmentIdnewSegmentId(long msb, long lsb)Creates aSegmentIdrepresented by the given MSB/LSB pair.
-