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


TypeScript Handle.destroy方法代碼示例

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


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

示例1: _dispatch

	protected _dispatch(): void {
		this._isProcessing = true;
		if (this._task) {
			this._task.destroy();
			this._task = null;
		}

		const queue = this._queue;
		let item: QueueItem | undefined;

		while (item = queue.shift()) {
			if (item.isActive && item.callback) {
				item.callback();
			}
		}

		this._isProcessing = false;

		let deferred: QueueItem[] | null = this._deferred;
		if (deferred && deferred.length) {
			this._deferred = null;

			let item: QueueItem | undefined;
			while (item = deferred.shift()) {
				this._schedule(item);
			}
		}
	}
開發者ID:dylans,項目名稱:core,代碼行數:28,代碼來源:Scheduler.ts

示例2: own

	/**
	 * Register handles for the instance that will be destroyed when `this.destroy` is called
	 *
	 * @param {Handle} handle The handle to add for the instance
	 * @returns {Handle} a handle for the handle, removes the handle for the instance and calls destroy
	 */
	own(handle: Handle): Handle {
		const { handles } = this;
		handles.push(handle);
		return {
			destroy() {
				handles.splice(handles.indexOf(handle));
				handle.destroy();
			}
		};
	}
開發者ID:dylans,項目名稱:core,代碼行數:16,代碼來源:Destroyable.ts

示例3: afterEach

	createTimer: (function () {
		let timer: Handle | null;

		return {
			afterEach() {
				timer && timer.destroy();
				timer = null;
			},

			destroy(this: any) {
				const dfd = this.async(1000);
				const spy = sinon.spy();
				timer = util.createTimer(spy, 100);

				setTimeout(function () {
					if (timer) {
						timer.destroy();
					}
				}, 50);

				setTimeout(dfd.callback(function () {
					assert.strictEqual(spy.callCount, 0);
				}), 110);
			},

			timeout(this: any) {
				const dfd = this.async(1000);
				const spy = sinon.spy();
				timer = util.createTimer(spy, 100);

				setTimeout(dfd.callback(function () {
					assert.strictEqual(spy.callCount, 1);
				}), 110);
			}
		};
	})(),
開發者ID:dylans,項目名稱:core,代碼行數:36,代碼來源:util.ts

示例4: setTimeout

				setTimeout(function () {
					if (timer) {
						timer.destroy();
					}
				}, 50);
開發者ID:dylans,項目名稱:core,代碼行數:5,代碼來源:util.ts

示例5:

		).finally(() => {
			listenerHandle.destroy();
			return this.executor.emit('suiteEnd', this);
		});
開發者ID:bryanforbes,項目名稱:intern,代碼行數:4,代碼來源:RemoteSuite.ts

示例6: function

	return function () {
		if (handle) {
			handle.destroy();
		}
		return util.cleanup(tunnel);
	};
開發者ID:jason0x43,項目名稱:digdug,代碼行數:6,代碼來源:integration.ts


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