Delegate class for managing and invoking callbacks This class provides functionality to add, remove, and invoke callback functions. It supports one-time callbacks and can manage callbacks with different targets and arguments.

Delegate类,用于管理和调用回调函数 这个类提供了添加、移除和调用回调函数的功能。 它支持一次性回调,并且可以管理具有不同目标对象和参数的回调函数。

构造函数

访问器

方法

  • 参数

    • callback: Function

      The callback function

    • 可选target: any

      The target object of the callback

    • 可选args: any[]

      Arguments for the callback

    返回 void

    Add a callback function

    添加回调函数

  • 参数

    • target: any

      The target object

    返回 void

    Clear all callback functions for a specific target

    清除指定目标对象的所有回调函数

  • 参数

    • ...args: any[]

      Arguments for the invocation

    返回 void

    Invoke all callback functions

    调用所有回调函数

  • 参数

    • callback: Function

      The callback function

    • 可选target: any

      The target object of the callback

    • 可选args: any[]

      Arguments for the callback

    返回 void

    Add a callback function that will only be executed once

    添加只执行一次的回调函数

  • 参数

    • callback: Function

      The callback function to remove

    • 可选target: any

      The target object of the callback

    返回 void

    Remove a callback function

    移除回调函数