ReplaySpeedReport.cs 480 B

123456789101112131415161718
  1. using System;
  2. namespace Abc.Zebus.Persistence.Reporter
  3. {
  4. public class ReplaySpeedReport
  5. {
  6. public int MessageCount { get; }
  7. public TimeSpan SendDuration { get; }
  8. public TimeSpan AckDuration { get; }
  9. public ReplaySpeedReport(int messageCount, TimeSpan sendDuration, TimeSpan ackDuration)
  10. {
  11. MessageCount = messageCount;
  12. SendDuration = sendDuration;
  13. AckDuration = ackDuration;
  14. }
  15. }
  16. }