namespace ZeroLevel.Services.PartitionStorage { internal interface IStorePartitionIndex { /// /// Search for the offset of the closest to the specified key. /// KeyIndex GetOffset(TKey key); /// /// Search for offsets of the keys closest to the specified ones. /// KeyIndex[] GetOffset(TKey[] keys, bool inOneGroup); } }