1
0
mirror of synced 2024-10-04 22:16:08 +00:00
Tapeti/Tapeti.Saga/ISagaProvider.cs

11 lines
239 B
C#
Raw Normal View History

2016-12-07 09:19:16 +00:00
using System.Threading.Tasks;
namespace Tapeti.Saga
{
public interface ISagaProvider
{
Task<ISaga<T>> Begin<T>(T initialState) where T : class;
2016-12-07 09:19:16 +00:00
Task<ISaga<T>> Continue<T>(string sagaId) where T : class;
}
}