Table of Contents

Enum EventPriority

Namespace
SampSharp.OpenMp.Core.Api
Assembly
SampSharp.OpenMp.Core.dll

Represents the priority of receiving events in an IEventDispatcher<T>.

public enum EventPriority : sbyte

Fields

Default = 0

The default priority. For handlers that must receive events at the default priority.

FairlyHigh = -64

A fairly high priority. For handlers that must receive events before most other handlers.

FairlyLow = 63

A fairly low priority. For handlers that must receive events after most other handlers.

Highest = -128

The highest priority. For handlers that must receive events first.

Lowest = 127

The lowest priority. For handlers that must receive events last.