QueueEvents Property

Specifies whether to allow multiple entries of the same event in the event queue.

Syntax

object.QueueEvents [= Boolean]

Properties

The QueueEvents property syntax has these parts:

Part

Description

object

An object expression that evaluates to an object in the Applies To list.

Boolean

Whether to allow multiple entries in the queue.

Settings

The settings for Boolean are:

Value

Description

True

Allow multiple entries in the queue.

False

Prevent multiple entries in the queue.

Remarks

If a Timer event is configured to occur every 5 seconds and it takes longer than 5 seconds to execute the event, the event will not be placed in the queue if QueueEvents is set to False. If QueueEvents is True, the event handler will occur for each event fired once the first event is acknowledged.

 

Applies To