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.
12 lines
358 B
12 lines
358 B
using Connected.Entities.Storage;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace Connected.Data.Sharding;
|
|
|
|
public interface IShardingMiddleware : IMiddleware
|
|
{
|
|
bool SupportsEntity(Type entityType);
|
|
Task<ImmutableArray<IShardingNode>> ProvideNodes(IStorageOperation operation);
|
|
Task<ImmutableArray<IShardingNode>> ProvideNodes(Type entityType);
|
|
}
|