You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

40 lines
1.1 KiB

  1. using System;
  2. using System.Threading;
  3. using System.Threading.Tasks;
  4. using DotNetCore.CAP.Infrastructure;
  5. namespace DotNetCore.CAP.Test
  6. {
  7. public class NoopMessageStore : ICapMessageStore
  8. {
  9. public Task<CapSentMessage> GetNextSentMessageToBeEnqueuedAsync()
  10. {
  11. throw new NotImplementedException();
  12. }
  13. public Task<OperateResult> RemoveSentMessageAsync(CapSentMessage message)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. public Task<OperateResult> StoreReceivedMessageAsync(CapReceivedMessage message)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. public Task<OperateResult> StoreSentMessageAsync(CapSentMessage message)
  22. {
  23. throw new NotImplementedException();
  24. }
  25. public Task<OperateResult> UpdateReceivedMessageAsync(CapReceivedMessage message)
  26. {
  27. throw new NotImplementedException();
  28. }
  29. public Task<OperateResult> UpdateSentMessageAsync(CapSentMessage message)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. }
  34. }