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.
 
 
 

21 lines
598 B

  1. using System;
  2. using System.Threading;
  3. using System.Threading.Tasks;
  4. using DotNetCore.CAP.Models;
  5. namespace DotNetCore.CAP.Test
  6. {
  7. //public class NoopMessageStore : ICapMessageStore
  8. //{
  9. // public Task<OperateResult> ChangeReceivedMessageStateAsync(CapReceivedMessage message, string statusName,
  10. // bool autoSaveChanges = true)
  11. // {
  12. // throw new NotImplementedException();
  13. // }
  14. // public Task<OperateResult> StoreSentMessageAsync(CapSentMessage message)
  15. // {
  16. // throw new NotImplementedException();
  17. // }
  18. //}
  19. }