MessageQueueInstaller.MaximumJournalSize 属性

定义

获取或设置与队列关联的日记的最大大小。

public:
 property long MaximumJournalSize { long get(); void set(long value); };
[System.ComponentModel.TypeConverter(typeof(System.Messaging.Design.SizeConverter))]
public long MaximumJournalSize { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Messaging.Design.SizeConverter))>]
member this.MaximumJournalSize : int64 with get, set
Public Property MaximumJournalSize As Long

属性值

日记队列的最大大小(以千字节为单位),该队列记录从队列中移除的消息。 该消息队列默认为无限制。

属性

注解

创建队列时,消息队列会在与新队列相同的位置自动创建队列日记。 队列日记用于跟踪从队列中删除的消息。

两种类型的消息保持未跟踪状态:那些因接收时间计时器过期而从队列中删除的消息,以及从队列中清除的消息。

应用程序无法将消息发送到日记队列。 但是,必须定期清除队列以删除不再需要的消息。 存储在日记队列中的消息计入队列所在的计算机的配额。 (计算机配额由 administrator.)

适用于