1
0
mirror of synced 2024-07-08 19:10:36 +00:00
Tapeti/Tapeti.Saga/ISaga.cs

14 lines
263 B
C#
Raw Normal View History

2016-12-07 09:19:16 +00:00
using System;
namespace Tapeti.Saga
{
public interface ISaga<out T> : IDisposable where T : class
{
string Id { get; }
T State { get; }
void ExpectResponse(string callId);
void ResolveResponse(string callId);
}
}