MessageQueueInstaller.UseJournalQueue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether messages that are retrieved from the queue are also copied to the associated journal queue.
public:
property bool UseJournalQueue { bool get(); void set(bool value); };
public bool UseJournalQueue { get; set; }
member this.UseJournalQueue : bool with get, set
Public Property UseJournalQueue As Boolean
Property Value
true
to copy messages that are retrieved from the queue to the journal queue; otherwise, false
. The default is false
.
Remarks
A journal queue lets you keep track of messages even after they have been retrieved from the queue. However, two types of messages remain untracked: those that are removed from the queue when their time-to-be-received timer expires, and those that are purged from the queue.
A journal queue should be cleared periodically to remove messages that are no longer needed. Messages stored in the journal queue count toward the quota for the computer on which the journal is located.