Enum RequestPriority
Priority level for query execution in the entity cache. Higher priority queries can execute concurrently with and preempt lower priority queries.
public enum RequestPriority
Fields
Default = 2Standard priority for business logic and noncritical UI.
Interactive = 3Higher priority for user-visible loads which block the rendering of other content or the completion of a gesture.
Preload = 0Lowest priority to avoid blocking startup.
Refresh = 1Lower priority for stale revalidation.