當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript CancellationTokenSource.cancel方法代碼示例

本文整理匯總了TypeScript中vscode.CancellationTokenSource.cancel方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript CancellationTokenSource.cancel方法的具體用法?TypeScript CancellationTokenSource.cancel怎麽用?TypeScript CancellationTokenSource.cancel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在vscode.CancellationTokenSource的用法示例。


在下文中一共展示了CancellationTokenSource.cancel方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: test

	test('showInputBox - cancel early', async function () {
		const source = new CancellationTokenSource();
		source.cancel();
		const p = window.showInputBox(undefined, source.token);
		const value = await p;
		assert.equal(value, undefined);
	});
開發者ID:joelday,項目名稱:vscode,代碼行數:7,代碼來源:window.test.ts

示例2:

 items = items.then(itms => {
     if (itms.length <= 1) {
         autoPick = itms[0];
         cancellation.cancel();
     }
     return itms;
 });
開發者ID:chrisleaman,項目名稱:vscode-gitlens,代碼行數:7,代碼來源:referencesQuickPick.ts

示例3: test

	test('showQuickPick, cancel early', function () {
		const source = new CancellationTokenSource();
		source.cancel();
		const p = window.showQuickPick(['eins', 'zwei', 'drei'], undefined, source.token);
		return p.then(value => {
			assert.equal(value, undefined);
		});
	});
開發者ID:sandy081,項目名稱:vscode,代碼行數:8,代碼來源:window.test.ts

示例4: test

	test('findFiles, cancellation', () => {

		const source = new CancellationTokenSource();
		const token = source.token; // just to get an instance first
		source.cancel();

		return workspace.findFiles('*.js', null, 100, token).then((res) => {
			assert.equal(res, void 0);
		});
	});
開發者ID:sangohan,項目名稱:KodeStudio,代碼行數:10,代碼來源:workspace.test.ts

示例5: 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

示例6: cancelCommandExecution

export function cancelCommandExecution() {
  if (cancellationTokenSource) {
    cancellationTokenSource.cancel();
    cancellationTokenSource = undefined;
    resetStatusBarItem();
    if (statusTimer) {
      clearInterval(statusTimer);
      statusTimer = undefined;
    }
  }
}
開發者ID:nertofiveone,項目名稱:salesforcedx-vscode,代碼行數:11,代碼來源:statusBar.ts

示例7: 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


注:本文中的vscode.CancellationTokenSource.cancel方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。