C# Class NServiceBus.ReceiveSettingsExtensions

Configuration extensions for receive settings.
Show file Open project: Particular/NServiceBus

Public Methods

Method Description
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.

Method Details

MakeInstanceUniquelyAddressable() public static method

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.
return void

OverrideLocalAddress() public static method

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.
return void