10 lines
189 B
C#
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);
|
|
}
|