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


TypeScript base.Promise.cancel方法代碼示例

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


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

示例1: cancel

	public cancel(): void {
		this.cancelTimeout();

		if (this.completionPromise) {
			this.completionPromise.cancel();
			this.completionPromise = null;
		}
	}
開發者ID:inspiredjw,項目名稱:VisualStudioCode,代碼行數:8,代碼來源:async.ts

示例2: test

	test('Throttler - cancel in the middle should not cancel other promises', function (done) {
		let count = 0;
		let factory = () => {
			return TPromise.timeout(0).then(() => {
				return ++count;
			});
		};

		let throttler = new Async.Throttler();
		let p3: Promise;

		Promise.join([
			throttler.queue(factory).then((result) => { assert.equal(result, 1); }, () => { assert(false, 'should not be here, 1'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 2'); }),
			p3 = throttler.queue(factory).then((result) => { assert(false, 'should not be here, 3'); }, () => { assert(true, 'yes, it was cancelled'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 4'); })
		]).done(() => done());

		p3.cancel();
	});
開發者ID:JarnoNijboer,項目名稱:vscode,代碼行數:20,代碼來源:async.test.ts

示例3: test

	test('Throttler - cancel the first queued promise should not cancel other promises', function(done) {
		var count = 0;
		var factory = () => {
			return Promise.timeout(0).then(() => {
				return ++count;
			});
		};

		var throttler = new Async.Throttler();
		var p2: Promise;

		Promise.join([
			throttler.queue(factory).then((result) => { assert.equal(result, 1); }, () => { assert(false, 'should not be here, 1'); }),
			p2 = throttler.queue(factory).then((result) => { assert(false, 'should not be here, 2'); }, () => { assert(true, 'yes, it was cancelled'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 3'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 4'); })
		]).done(() => done());

		p2.cancel();
	});
開發者ID:gaoxiaojun,項目名稱:vscode,代碼行數:20,代碼來源:async.test.ts

示例4: test

	test('Throttler - cancel the first queued promise should not cancel other promises', function () {
		let count = 0;
		let factory = () => {
			return TPromise.timeout(0).then(() => {
				return ++count;
			});
		};

		let throttler = new Async.Throttler();
		let p2: Promise;

		const p = Promise.join([
			throttler.queue(factory).then((result) => { assert.equal(result, 1); }, () => { assert(false, 'should not be here, 1'); }),
			p2 = throttler.queue(factory).then((result) => { assert(false, 'should not be here, 2'); }, () => { assert(true, 'yes, it was cancelled'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 3'); }),
			throttler.queue(factory).then((result) => { assert.equal(result, 2); }, () => { assert(false, 'should not be here, 4'); })
		]);

		p2.cancel();

		return p;
	});
開發者ID:sameer-coder,項目名稱:vscode,代碼行數:22,代碼來源:async.test.ts

示例5:

		}, () => request.cancel());
開發者ID:asotog,項目名稱:vscode,代碼行數:1,代碼來源:ipc.cp.ts

示例6:

		}, () => {
			this.activePromise.cancel();
		});
開發者ID:inspiredjw,項目名稱:VisualStudioCode,代碼行數:3,代碼來源:async.ts


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