构造函数

方法

  • 参数

    • sign: string

      The object type signature.

    返回 void

    Clear the objects in the object pool.

    清除对象池中的对象。

  • 类型参数

    • T

    参数

    • cls: new () => T

      The class for creating the object.

    返回 T

    Create an object by class.

    根据类创建对象。

  • 类型参数

    • T

    参数

    • type: new () => T
    • 可选init: (obj: T, ...args: any[]) => void
    • 可选reset: (obj: T) => void

    返回 IPool<T>

  • 参数

    • sign: string

      The object type signature.

    返回 any

    An object of the specified type or null if none is available.

    Get an object from the object pool by the object type signature. If there is no object of this type in the pool, return null.

    根据传入的对象类型标识字符,获取对象池中已存储的此类型的一个对象,如果对象池中无此类型的对象,则返回 null。

  • 类型参数

    • T

    参数

    • sign: string

      The object type signature.

    • cls: new () => T

      The class used to create the object of this type.

    返回 T

    An object of the specified type.

    Get an object instance of a certain type from the object pool. If there is no object of this type in the pool, a new object will be created and returned.

    根据传入的对象类型标识字符,获取对象池中此类型标识的一个对象实例。 如果对象池中无此类型标识的对象时,则根据传入的类型,创建一个新的对象返回。

  • 参数

    • sign: string

      The object type signature.

    • createFun: Function

      The function used to create the object of this type.

    • caller: any = null

      The this context for the creation function.

    返回 any

    An object of the specified type.

    Get an object instance of a certain type from the object pool using a creation function. If there is no object of this type in the pool, a new object will be created using the function and returned.

    根据传入的对象类型标识字符和创建函数,获取对象池中此类型标识的一个对象实例。 如果对象池中无此类型标识的对象时,则使用传入的创建此类型对象的函数,新建一个对象返回。

  • 参数

    • sign: string

      The object type signature.

    返回 any[]

    The object pool.

    Get the object pool based on the object type signature.

    根据对象类型标识字符获取对象池。

  • 参数

    • sign: string

      The object type signature.

    • item: any

      The object.

    返回 void

    Put the object into the object pool of the corresponding type signature.

    将对象放到对应类型标识的对象池中。

  • 参数

    • instance: any

      The instance of the class.

    返回 void

    Recover by class name if the class has one, if not, do not recover.

    根据类名进行回收,如果类有类名才进行回收,没有则不回收。