Global Fault Handling in MassTransit
I want to create a global way to handle errors. My application has it’s own internal error handling pattern and I need a single place to dispatch error messages to it.
MassTransit StateMachine/State shows message received, but does not move to process
I am using a StateMachine, I find occasional messages appear to become stalled and will not move forward. For example, a small set had five of six complete as expected.
MassTransit unit testing endpoint with no response
I have a fairly straightforward example and want to unit test an endpoint that has not response. I have seen examples of using this and it works as expected.
Masstransit message topology
When configuring the receive endpoint, whilst it is possible to configure a consumer for generic type messages, there doesn’t appear to be any way to configure the message topology for a generic type message. The only method on IReceiveEndpointConfigurator
is ConfigureMessageTopology<T>(book enabled = true)
Does anyone no away around this?