hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IInstancePool

    interface IInstancePool {
        get<T extends IReusable>(className: string, clazz?: new () => T): T;
        getPoolCounts(): IInstancePoolCounts;
        prepopulate<T extends IReusable>(
            className: string,
            clazz: new () => T,
            count: number,
        ): void;
        release(item: IReusable): void;
    }

    Implemented by

    Index

    Methods