2017-01-31 11:01:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Flow
|
|
|
|
|
{
|
|
|
|
|
public interface IFlowRepository
|
|
|
|
|
{
|
2017-02-05 22:22:34 +00:00
|
|
|
|
Task<IQueryable<FlowStateRecord>> GetStates();
|
|
|
|
|
Task CreateState(FlowStateRecord stateRecord, DateTime timestamp);
|
|
|
|
|
Task UpdateState(FlowStateRecord stateRecord);
|
2017-01-31 11:01:08 +00:00
|
|
|
|
Task DeleteState(Guid flowID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class FlowStateRecord
|
|
|
|
|
{
|
|
|
|
|
public Guid FlowID;
|
|
|
|
|
public string Metadata;
|
|
|
|
|
public string Data;
|
2017-02-05 22:22:34 +00:00
|
|
|
|
public Dictionary<Guid, string> ContinuationMetadata;
|
2017-01-31 11:01:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|