Analytics event priority.
FlushQueueFlag | Any current or previous events in the memory queue persist immediately to the filesystem and dispatcher service makes the events available to send to the server. It adds the events to the bottom of the dispatch queue and makes them available to send to the server. |
CacheImmediatelyFlag | Any current or previous events in the memory queue persist immediately to the filesystem. |
AllowInStopModeFlag | Use this flag to send events while in the stop state. |
SendImmediateFlag | Events with this flag are given higher priority compared to others while dispatching to the server. |
NormalPriorityEvent | This priority queues events in-memory. |
NormalPriorityEvent_WithCaching | This priority queues events in-memory and writes them to the filesystem immediately. |
HighPriorityEvent | Any current or previous events in the memory queue persist immediately to the filesystem. It adds the events to the bottom of the dispatch queue and makes them available to send to the server. |
HighPriorityEvent_InStopMode | This priority lets you send events in the stop state, and makes any current or previous events in the memory queue persist immediately to the filesystem. It adds the events to the bottom of the dispatch queue and makes them available to send to the server. |
HighestPriorityEvent | This priority is similar to the AnalyticsEventPriority.HighPriorityEvent, except these events are given a highest priority than other events in the disptach queue. It adds the events to the top of the dispatch queue and makes them available to send to the server. |