using Pole.Sagas.Core; using Pole.Sagas.Server.Grpc; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Pole.Sagas.Server { public interface ISagasBuffer { Task> GetSagas(string serviceName, int limit); Task AddSagas(IAsyncEnumerable sagasGroupEntities); } }