• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript vscode.CancellationTokenSource类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: test

	test('showQuickPick, canceled by another picker', function () {

		const result = window.showQuickPick(['eins', 'zwei', 'drei'], { ignoreFocusOut: true }).then(result => {
			assert.equal(result, undefined);
		});

		const source = new CancellationTokenSource();
		source.cancel();
		window.showQuickPick(['eins', 'zwei', 'drei'], undefined, source.token);

		return result;
	});
开发者ID:aminroosta,项目名称:vscode,代码行数:12,代码来源:window.test.ts


示例2: test

	test('showQuickPick, native promise - #11754', async function () {

		const data = new Promise<string[]>(resolve => {
			resolve(['a', 'b', 'c']);
		});

		const source = new CancellationTokenSource();
		const result = window.showQuickPick(data, undefined, source.token);
		source.cancel();
		const value_1 = await result;
		assert.equal(value_1, undefined);
	});
开发者ID:joelday,项目名称:vscode,代码行数:12,代码来源:window.test.ts


示例3: it

  it('Should notify cancellation', async () => {
    const observable = new ReplaySubject<number | undefined>();
    observable.next(undefined);
    const cancellationTokenSource = new CancellationTokenSource();
    cancellationTokenSource.cancel();

    const notificationService = NotificationService.getInstance();
    await notificationService.reportExecutionStatus(
      'mock command',
      observable,
      cancellationTokenSource.token
    );

    assert.calledOnce(mShow);
    assert.notCalled(mShowInformation);
    assert.calledWith(mShowWarningMessage, 'mock command was canceled');
    assert.notCalled(mShowErrorMessage);
  });
开发者ID:nertofiveone,项目名称:salesforcedx-vscode,代码行数:18,代码来源:index.test.ts


示例4: show

    static async show(
        stash: GitStash,
        mode: 'list' | 'apply',
        progressCancellation: CancellationTokenSource,
        goBackCommand?: CommandQuickPickItem,
        currentCommand?: CommandQuickPickItem
    ): Promise<CommitQuickPickItem<GitStashCommit> | CommandQuickPickItem | undefined> {
        const items = ((stash &&
            Array.from(Iterables.map(stash.commits.values(), c => new CommitQuickPickItem<GitStashCommit>(c)))) ||
            []) as (CommitQuickPickItem<GitStashCommit> | CommandQuickPickItem)[];

        if (mode === 'list') {
            const commandArgs: StashSaveCommandArgs = {
                goBackCommand: currentCommand
            };
            items.splice(
                0,
                0,
                new CommandQuickPickItem(
                    {
                        label: '$(plus) Stash Changes',
                        description: `${Strings.pad(GlyphChars.Dash, 2, 3)} stashes all changes`
                    },
                    Commands.StashSave,
                    [commandArgs]
                )
            );
        }

        if (goBackCommand) {
            items.splice(0, 0, goBackCommand);
        }

        if (progressCancellation.token.isCancellationRequested) return undefined;

        const scope = await Container.keyboard.beginScope({ left: goBackCommand });

        progressCancellation.cancel();

        const pick = await window.showQuickPick(items, {
            matchOnDescription: true,
            placeHolder:
                mode === 'apply'
                    ? `Apply stashed changes to your working tree${GlyphChars.Ellipsis}`
                    : `stashed changes ${GlyphChars.Dash} search by message, filename, or commit id`,
            ignoreFocusOut: getQuickPickIgnoreFocusOut()
            // onDidSelectItem: (item: QuickPickItem) => {
            //     scope.setKeyCommand('right', item);
            // }
        });

        await scope.dispose();

        return pick;
    }
开发者ID:chrisleaman,项目名称:vscode-gitlens,代码行数:55,代码来源:stashListQuickPick.ts


示例5: show

    static async show(
        log: GitLog | undefined,
        placeHolder: string,
        progressCancellation: CancellationTokenSource,
        options: {
            goBackCommand?: CommandQuickPickItem;
            showAllCommand?: CommandQuickPickItem;
            showInViewCommand?: CommandQuickPickItem;
        }
    ): Promise<CommitQuickPickItem | CommandQuickPickItem | undefined> {
        const items = ((log && [...Iterables.map(log.commits.values(), c => new CommitQuickPickItem(c))]) || [
            new MessageQuickPickItem('No results found')
        ]) as (CommitQuickPickItem | CommandQuickPickItem)[];

        if (options.showInViewCommand !== undefined) {
            items.splice(0, 0, options.showInViewCommand);
        }

        if (options.showAllCommand !== undefined) {
            items.splice(0, 0, options.showAllCommand);
        }

        if (options.goBackCommand !== undefined) {
            items.splice(0, 0, options.goBackCommand);
        }

        if (progressCancellation.token.isCancellationRequested) return undefined;

        const scope = await Container.keyboard.beginScope({ left: options.goBackCommand });

        progressCancellation.cancel();

        const pick = await window.showQuickPick(items, {
            matchOnDescription: true,
            placeHolder: placeHolder,
            ignoreFocusOut: getQuickPickIgnoreFocusOut()
            // onDidSelectItem: (item: QuickPickItem) => {
            //     scope.setKeyCommand('right', item);
            // }
        });

        await scope.dispose();

        return pick;
    }
开发者ID:chrisleaman,项目名称:vscode-gitlens,代码行数:45,代码来源:commitsQuickPick.ts


示例6: test

    test('Kill', done => {
        const def = createDeferred<any>();
        const output: string[] = [];
        function handleOutput(data: string) {
            output.push(data);
        }
        const cancellation = new vscode.CancellationTokenSource();
        execPythonFile('python', ['-c', 'import sys\nprint(1)\nsys.__stdout__.flush()\nimport time\ntime.sleep(5)\nprint(2)'], __dirname, false, handleOutput, cancellation.token).then(() => {
            def.reject('Should not have completed');
        }).catch(()=>{
            def.resolve();
        });

        setTimeout(() => {
            cancellation.cancel();
        }, 1000);

        def.promise.then(done).catch(done);
    });
开发者ID:walkoncross,项目名称:pythonVSCode,代码行数:19,代码来源:extension.common.test.ts


示例7: _showQuickPickProgress

async function _showQuickPickProgress(message: string, cancellation: CancellationTokenSource, mapping?: KeyMapping) {
    const scope = mapping && (await Container.keyboard.beginScope(mapping));

    try {
        await window.showQuickPick(
            _getInfiniteCancellablePromise(cancellation),
            {
                placeHolder: message,
                ignoreFocusOut: getQuickPickIgnoreFocusOut()
            },
            cancellation.token
        );
    }
    catch (ex) {
        // Not sure why this throws
    }
    finally {
        cancellation.cancel();
        scope && scope.dispose();
    }
}
开发者ID:chrisleaman,项目名称:vscode-gitlens,代码行数:21,代码来源:commonQuickPicks.ts


示例8: test

	test('#7013 - input without options', function () {
		const source = new CancellationTokenSource();
		let p = window.showInputBox(undefined, source.token);
		assert.ok(typeof p === 'object');
		source.dispose();
	});
开发者ID:sandy081,项目名称:vscode,代码行数:6,代码来源:window.test.ts


示例9:

 items = items.then(itms => {
     if (itms.length <= 1) {
         autoPick = itms[0];
         cancellation.cancel();
     }
     return itms;
 });
开发者ID:chrisleaman,项目名称:vscode-gitlens,代码行数:7,代码来源:referencesQuickPick.ts


示例10: cancelCommandExecution

export function cancelCommandExecution() {
  if (cancellationTokenSource) {
    cancellationTokenSource.cancel();
    cancellationTokenSource = undefined;
    resetStatusBarItem();
    if (statusTimer) {
      clearInterval(statusTimer);
      statusTimer = undefined;
    }
  }
}
开发者ID:nertofiveone,项目名称:salesforcedx-vscode,代码行数:11,代码来源:statusBar.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript vscode.DiagnosticCollection类代码示例发布时间:2022-05-25
下一篇:
TypeScript vscode.CancellationToken类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap