Interface IPipeBuilder<TContext>
- Namespace
- MassTransit.Configuration
- Assembly
- MassTransit.Abstractions.dll
A pipe builder constructs a pipe by adding filter to the end of the chain, after while the builder completes the pipe/filter combination.
public interface IPipeBuilder<TContext> where TContext : class, PipeContext
Type Parameters
TContext
The pipe context type
Methods
AddFilter(IFilter<TContext>)
Add a filter to the pipe after any existing filters
void AddFilter(IFilter<TContext> filter)
Parameters
filter
IFilter<TContext>The filter to add