Show / Hide Table of Contents

    Enum CallbackPriority

    In a scenario where an event has multiple subscribers, the callback priority affects which subscriber gets the callback first. High priority subscribers will receive the event before normal priority (the default) subscribers, and low priority will receive the event last.

    Note: For 2 subscribers with the same callback priority, there's no guarantee regarding who gets the event first.

    Namespace: AGS.API
    Assembly: AGS.API.dll
    Syntax
    public enum CallbackPriority : byte

    Fields

    Name Description
    High

    High priority- will receive the event first.

    Low

    Low priority- will receive the event last.

    Normal

    Normal priority.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX