Interface IReceiveEndpointObserver
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
Used to observe the events signaled by a receive endpoint
public interface IReceiveEndpointObserver
Methods
Completed(ReceiveEndpointCompleted)
Called when the receive endpoint has completed
Task Completed(ReceiveEndpointCompleted completed)
Parameters
completed
ReceiveEndpointCompleted
Returns
Faulted(ReceiveEndpointFaulted)
Called when the receive endpoint faults
Task Faulted(ReceiveEndpointFaulted faulted)
Parameters
faulted
ReceiveEndpointFaulted
Returns
Ready(ReceiveEndpointReady)
Called when the receive endpoint is ready to receive messages
Task Ready(ReceiveEndpointReady ready)
Parameters
ready
ReceiveEndpointReady
Returns
Stopping(ReceiveEndpointStopping)
Called when the receive endpoint is being stopped, prior to actually stopping
Task Stopping(ReceiveEndpointStopping stopping)
Parameters
stopping
ReceiveEndpointStopping