using System; using System.Threading; using System.Threading.Tasks; namespace Cap.Consistency.Test { public class NoopMessageStore : IConsistencyMessageStore { public Task CreateAsync(TestConsistencyMessage message, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task DeleteAsync(TestConsistencyMessage message, CancellationToken cancellationToken) { throw new NotImplementedException(); } public void Dispose() { throw new NotImplementedException(); } public Task FindByIdAsync(string messageId, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task GetMessageIdAsync(TestConsistencyMessage message, CancellationToken cancellationToken) { throw new NotImplementedException(); } public Task UpdateAsync(TestConsistencyMessage message, CancellationToken cancellationToken) { throw new NotImplementedException(); } } }