1
0
mirror of synced 2024-06-28 23:07:40 +00:00
Tapeti/Tapeti.Flow/Default/NonPersistentFlowRepository.cs
Mark van Renswoude bcdb376256 Fixed queue arguments error due to wrong value types
Added test for publish overflows
Removed support for Unity Container
Changed third party package references to ranges
Fixed XML documentation
2022-11-22 13:20:47 +01:00

37 lines
985 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Tapeti.Flow.Default
{
/// <summary>
/// Default implementation for IFlowRepository. Does not persist any state, relying on the FlowStore's cache instead.
/// </summary>
public class NonPersistentFlowRepository : IFlowRepository
{
ValueTask<IEnumerable<FlowRecord<T>>> IFlowRepository.GetStates<T>()
{
return new ValueTask<IEnumerable<FlowRecord<T>>>(Enumerable.Empty<FlowRecord<T>>());
}
/// <inheritdoc />
public ValueTask CreateState<T>(Guid flowID, T state, DateTime timestamp)
{
return default;
}
/// <inheritdoc />
public ValueTask UpdateState<T>(Guid flowID, T state)
{
return default;
}
/// <inheritdoc />
public ValueTask DeleteState(Guid flowID)
{
return default;
}
}
}