Universley.OrleansContrib.S.../Provider/RedisStreamBatchContainer.cs
2024-06-25 16:20:15 +01:00

28 lines
700 B
C#

using Orleans.Runtime;
using Orleans.Streams;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Provider
{
public class RedisStreamBatchContainer : IBatchContainer
{
public StreamId StreamId => throw new NotImplementedException();
private rea
public StreamSequenceToken SequenceToken => throw new NotImplementedException();
public IEnumerable<Tuple<T, StreamSequenceToken>> GetEvents<T>()
{
throw new NotImplementedException();
}
public bool ImportRequestContext()
{
throw new NotImplementedException();
}
}
}