14 lines
263 B
C#
14 lines
263 B
C#
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);
|
|
}
|
|
}
|