mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
35 lines
1.4 KiB
using System.Collections.Generic;
|
|
|
|
namespace ZeroLevel.Services.PartitionStorage
|
|
{
|
|
/// <summary>
|
|
/// Provides read/reindex operations in catalog partition
|
|
/// </summary>
|
|
/// <typeparam name="TKey">Key type</typeparam>
|
|
/// <typeparam name="TInput">Type of one input value</typeparam>
|
|
/// <typeparam name="TValue">Type of records aggregate</typeparam>
|
|
public interface IStorePartitionAccessor<TKey, TInput, TValue>
|
|
: IStorePartitionBase<TKey, TInput, TValue>
|
|
{
|
|
/// <summary>
|
|
/// Rebuild indexes
|
|
/// </summary>
|
|
void RebuildIndex();
|
|
/// <summary>
|
|
/// Find in catalog partition by key
|
|
/// </summary>
|
|
StorePartitionKeyValueSearchResult<TKey, TValue> Find(TKey key);
|
|
/// <summary>
|
|
/// Find in catalog partition by keys
|
|
/// </summary>
|
|
IEnumerable<StorePartitionKeyValueSearchResult<TKey, TValue>> Find(IEnumerable<TKey> keys);
|
|
IEnumerable<StorePartitionKeyValueSearchResult<TKey, TValue>> Iterate();
|
|
IEnumerable<StorePartitionKeyValueSearchResult<TKey, TValue>> IterateKeyBacket(TKey key);
|
|
|
|
void RemoveKey(TKey key, bool autoReindex = false);
|
|
void RemoveKeys(IEnumerable<TKey> keys, bool autoReindex = true);
|
|
void RemoveAllExceptKey(TKey key, bool autoReindex = false);
|
|
void RemoveAllExceptKeys(IEnumerable<TKey> keys, bool autoReindex = true);
|
|
}
|
|
}
|