C# Class NServiceBus.DurableMessagesConfig

Configuration class for durable messaging.
Show file Open project: Particular/NServiceBus

Public Methods

Method Description
DisableDurableMessages ( this config ) : void

Configures messages that are not guaranteed to be delivered in the event of a computer failure or network problem.

DurableMessagesEnabled ( this settings ) : bool

Returns whether durable messages are on or off.

EnableDurableMessages ( this config ) : void

Configures messages to be guaranteed to be delivered in the event of a computer failure or network problem.

Method Details

DisableDurableMessages() public static method

Configures messages that are not guaranteed to be delivered in the event of a computer failure or network problem.
public static DisableDurableMessages ( this config ) : void
config this The instance to apply the settings to.
return void

DurableMessagesEnabled() public static method

Returns whether durable messages are on or off.
public static DurableMessagesEnabled ( this settings ) : bool
settings this
return bool

EnableDurableMessages() public static method

Configures messages to be guaranteed to be delivered in the event of a computer failure or network problem.
public static EnableDurableMessages ( this config ) : void
config this The instance to apply the settings to.
return void