File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Arcus.Messaging.Pumps.Abstractions/Resiliency Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public virtual async Task ResumeMessageProcessingAsync(string jobId)
91
91
/// </summary>
92
92
/// <param name="jobId">The unique identifier to distinguish the message pump in the application services.</param>
93
93
/// <exception cref="ArgumentException">Thrown when the <paramref name="jobId"/> is blank.</exception>
94
- public MessagePumpCircuitState GetMessageProcessingState ( string jobId )
94
+ public MessagePumpCircuitState GetCircuitBreakerState ( string jobId )
95
95
{
96
96
Guard . NotNullOrWhitespace ( jobId , nameof ( jobId ) ) ;
97
97
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public interface IMessagePumpCircuitBreaker
14
14
/// </summary>
15
15
/// <param name="jobId">The unique identifier to distinguish the message pump in the application services.</param>
16
16
/// <exception cref="ArgumentException">Thrown when the <paramref name="jobId"/> is blank.</exception>
17
- MessagePumpCircuitState GetMessageProcessingState ( string jobId ) ;
17
+ MessagePumpCircuitState GetCircuitBreakerState ( string jobId ) ;
18
18
19
19
/// <summary>
20
20
/// Pause the process of receiving messages in the message pump for a period of time before careful retrying again.
You can’t perform that action at this time.
0 commit comments