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.
26 lines
652 B
26 lines
652 B
using System;
|
|
|
|
namespace ZeroLevel.Services.PartitionStorage
|
|
{
|
|
/// <summary>
|
|
/// Partition, contains the method of forming the path
|
|
/// </summary>
|
|
public class StoreCatalogPartition<TMeta>
|
|
{
|
|
/// <summary>
|
|
/// Name of partition, just for info
|
|
/// </summary>
|
|
public string Name { get; }
|
|
/// <summary>
|
|
/// Path generator
|
|
/// </summary>
|
|
public Func<TMeta, string> PathExtractor { get; }
|
|
|
|
public StoreCatalogPartition(string name, Func<TMeta, string> pathExtractor)
|
|
{
|
|
Name = name;
|
|
PathExtractor = pathExtractor;
|
|
}
|
|
}
|
|
}
|