C# Class NServiceBus.ReceiveSettingsExtensions

Configuration extensions for receive settings.
Afficher le fichier Open project: Particular/NServiceBus

Méthodes publiques

Méthode 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 méthode

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.
Résultat void

OverrideLocalAddress() public static méthode

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.
Résultat void