Table of Contents

Interface ISendTopologyConfigurator

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll
public interface ISendTopologyConfigurator : ISendTopology, ISendTopologyConfigurationObserverConnector, ISpecification
Inherited Members
Extension Methods

Properties

DeadLetterQueueNameFormatter

Specify a dead letter queue name formatter, which is used to format the name for a dead letter queue. Defaults to (queue name)_skipped.

IDeadLetterQueueNameFormatter DeadLetterQueueNameFormatter { get; set; }

Property Value

IDeadLetterQueueNameFormatter

ErrorQueueNameFormatter

Specify an error queue name formatter, which is used to format the name for an error queue. Defaults to (queue name)_error.

IErrorQueueNameFormatter ErrorQueueNameFormatter { get; set; }

Property Value

IErrorQueueNameFormatter

Methods

AddMessageSendTopology<T>(IMessageSendTopology<T>)

Add a send topology for a specific message type

void AddMessageSendTopology<T>(IMessageSendTopology<T> topology) where T : class

Parameters

topology IMessageSendTopology<T>

The topology

Type Parameters

T

The message type

TryAddConvention(ISendTopologyConvention)

Adds a convention to the topology, which will be applied to every message type requested, to determine if a convention for the message type is available.

bool TryAddConvention(ISendTopologyConvention convention)

Parameters

convention ISendTopologyConvention

The send topology convention

Returns

bool