当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript utils.GC函数代码示例

本文整理汇总了TypeScript中tns-core-modules/utils/utils.GC函数的典型用法代码示例。如果您正苦于以下问题:TypeScript GC函数的具体用法?TypeScript GC怎么用?TypeScript GC使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了GC函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: clearPage

export function buildUIWithWeakRefAndInteract<T extends View>(createFunc: () => T, interactWithViewFunc?: (view: T) => void, done?) {
    clearPage();
    const page = getCurrentPage();
    const weakRef = new WeakRef(createFunc());
    page.content = weakRef.get();
    if (interactWithViewFunc) {
        interactWithViewFunc(weakRef.get());
    }
    page.content = null;
    // Give a change for native cleanup (e.g. keyboard close, etc.).
    TKUnit.wait(0.001);
    if (page.ios) {
        /* tslint:disable:no-unused-expression */
        // Could cause GC on the next call.
        // NOTE: Don't replace this with forceGC();
        new ArrayBuffer(4 * 1024 * 1024);

        // An additional GC and wait are needed since WebKit upgrade to version 12.0
        // (TEXT-FIELD.testMemoryLeak test started failing sporadically)
        utils.GC();
        TKUnit.wait(0.1);
    }
    utils.GC();
    try {
        TKUnit.assert(!weakRef.get(), weakRef.get() + " leaked!");
        done(null);
    }
    catch (ex) {
        done(ex);
    }
}
开发者ID:m-abs,项目名称:NativeScript,代码行数:31,代码来源:helper.ts

示例2: forceGC

export function forceGC() {
    if (isIOS) {
        /* tslint:disable:no-unused-expression */
        // Could cause GC on the next call.
        new ArrayBuffer(4 * 1024 * 1024);
    }

    utils.GC();
    TKUnit.wait(0.001);
}
开发者ID:m-abs,项目名称:NativeScript,代码行数:10,代码来源:helper.ts

示例3: clear

export function clear(args) {
    repeaterIds
        .map(name => args.object.page.getViewById(name))
        .forEach(repeater => {
            repeater.bindingContext = null;
        });

    args.object.page.getViewById("title").text = "---";

    utils.GC();
}
开发者ID:sitefinitysteve,项目名称:NativeScript,代码行数:11,代码来源:flexbox-perf-comparison.ts


注:本文中的tns-core-modules/utils/utils.GC函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。