Files
Swarm/DysonNetwork.Common/Services/IFlushHandler.cs

10 lines
189 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace DysonNetwork.Common.Services;
public interface IFlushHandler<T>
{
Task FlushAsync(IReadOnlyList<T> items);
}