C# Класс NServiceBus.ReceiveSettingsExtensions

Configuration extensions for receive settings.
Показать файл Открыть проект

Открытые методы

Метод Описание
MakeInstanceUniquelyAddressable ( this config, string discriminator ) : void

Makes the endpoint instance uniquely addressable when running multiple instances by adding an instance-specific queue.

OverrideLocalAddress ( this config, string baseInputQueueName ) : void

Overrides the base name of the input queue. The actual input queue name consists of this base name, instance ID and subqueue qualifier.

Описание методов

MakeInstanceUniquelyAddressable() публичный статический Метод

Makes the endpoint instance uniquely addressable when running multiple instances by adding an instance-specific queue.
public static MakeInstanceUniquelyAddressable ( this config, string discriminator ) : void
config this The instance to apply the settings to.
discriminator string The value to append to the endpoint name to create an instance-specific queue.
Результат void

OverrideLocalAddress() публичный статический Метод

Overrides the base name of the input queue. The actual input queue name consists of this base name, instance ID and subqueue qualifier.
public static OverrideLocalAddress ( this config, string baseInputQueueName ) : void
config this The instance to apply the settings to.
baseInputQueueName string The base name of the input queue.
Результат void