DefaultPropertiesToSend.UseJournalQueue Property

Definition

Gets or sets a value that indicates whether a copy of the message should be kept in a machine journal on the originating computer.

public:
 property bool UseJournalQueue { bool get(); void set(bool value); };
[System.Messaging.MessagingDescription("MsgUseJournalQueue")]
public bool UseJournalQueue { get; set; }
[<System.Messaging.MessagingDescription("MsgUseJournalQueue")>]
member this.UseJournalQueue : bool with get, set
Public Property UseJournalQueue As Boolean

Property Value

true to require that a copy of a message be kept in the originating computer's machine journal after it has been successfully transmitted from the originating computer to the next step; otherwise, false. The default is false.

Attributes

Remarks

UseJournalQueue and UseDeadLetterQueue specify how Message Queuing will track a message. If UseJournalQueue is true, then at each step that a message is transmitted, a copy is kept in the computer journal on the originating computer.

The sent message will only be copied to the journal queue if the destination queue is on a remote computer. If the destination is on the local computer, the message is sent directly to the queue; there are no intermediate steps to require journaling.

When you store messages in a journal queue, empty the queue periodically to remove messages that are no longer needed. Messages stored in journal queues count against the quota for the computer where the queue resides (the computer quota is set by the administrator).

You do not create a journal or dead-letter queue. These are both system queues that are generated by Message Queuing.

Journaling can be specified by both the message and the queue. When DefaultPropertiesToSend.UseJournalQueue is true, the message is journaled when it is sent. When MessageQueue.UseJournalQueue is true, the message is journaled when it is received.

Applies to

See also