Interface IPipeContextSource<TContext, TInput>
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
A source which provides the context using the input context to select the appropriate source.
public interface IPipeContextSource<out TContext, in TInput> : IProbeSite where TContext : class, PipeContext where TInput : class, PipeContext
Type Parameters
TContext
The output context type
TInput
The input context type
- Inherited Members
Methods
Send(TInput, IPipe<TContext>)
Send a context from the source through the specified pipe, using the input context to select the proper source.
Task Send(TInput context, IPipe<out TContext> pipe)
Parameters
context
TInputpipe
IPipe<TContext>