Interface IReceivePipelineConfigurator
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
public interface IReceivePipelineConfigurator
Methods
ConfigureDeadLetter(Action<IPipeConfigurator<ReceiveContext>>)
Configure the dead letter pipeline, which is called if the message is not consumed
void ConfigureDeadLetter(Action<IPipeConfigurator<ReceiveContext>> callback)
Parameters
callback
Action<IPipeConfigurator<ReceiveContext>>
ConfigureError(Action<IPipeConfigurator<ExceptionReceiveContext>>)
Configure the exception pipeline, which is called if there are uncaught consumer exceptions
void ConfigureError(Action<IPipeConfigurator<ExceptionReceiveContext>> callback)
Parameters
callback
Action<IPipeConfigurator<ExceptionReceiveContext>>
ConfigureReceive(Action<IReceivePipeConfigurator>)
Configure the Receive pipeline
void ConfigureReceive(Action<IReceivePipeConfigurator> callback)
Parameters
callback
Action<IReceivePipeConfigurator>
ConfigureTransport(Action<ITransportConfigurator>)
Configure the transport options
void ConfigureTransport(Action<ITransportConfigurator> callback)
Parameters
callback
Action<ITransportConfigurator>