enumeration
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseAnalytics 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. |
NoCachingFlag | Events will be stored in the memory queue, and will not persist in the file system. |
NoRetryFlag | In case of failure to post the event to the server, it will not attempt to send them again. |
NormalPriorityEvent | This priority queues events in-memory. |
NormalPriorityEvent_WithCaching | This priority queues events in-memory and writes them to the filesystem immediately. |
NormalPriorityEvent_NoRetryNoCaching | This priority is similar to the AnalyticsEventPriority.NormalPriorityEvent, except these events will be stored in the memory queue and will not persist in the file system. In case of failure to post the event to the server, it will not attempt to send them again. |
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. |
HighestPriorityEvent_NoRetryNoCaching | This priority is similar to the AnalyticsEventPriority.HighestPriorityEvent, except these events will be stored in the memory queue and will not persist in the file system. In case of failure to post the event to the server, it will not attempt to send them again. |