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


TypeScript intervalUtils.clearAsyncExcludingInterval方法代码示例

本文整理汇总了TypeScript中@0xproject/utils.intervalUtils.clearAsyncExcludingInterval方法的典型用法代码示例。如果您正苦于以下问题:TypeScript intervalUtils.clearAsyncExcludingInterval方法的具体用法?TypeScript intervalUtils.clearAsyncExcludingInterval怎么用?TypeScript intervalUtils.clearAsyncExcludingInterval使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@0xproject/utils.intervalUtils的用法示例。


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

示例1: _stopBlockAndLogStream

 private _stopBlockAndLogStream(): void {
     if (_.isUndefined(this._blockAndLogStreamerIfExists)) {
         throw new Error(ZeroExError.SubscriptionNotFound);
     }
     this._blockAndLogStreamerIfExists.unsubscribeFromOnLogAdded(this._onLogAddedSubscriptionToken as string);
     this._blockAndLogStreamerIfExists.unsubscribeFromOnLogRemoved(this._onLogRemovedSubscriptionToken as string);
     intervalUtils.clearAsyncExcludingInterval(this._blockAndLogStreamIntervalIfExists as NodeJS.Timer);
     delete this._blockAndLogStreamerIfExists;
 }
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:9,代码来源:contract_wrapper.ts

示例2: async

 async () => {
     const [balance] = await this.getTokenBalanceAndAllowanceAsync(
         this._userAddressIfExists,
         token.address,
     );
     if (!balance.eq(currBalance)) {
         intervalUtils.clearAsyncExcludingInterval(tokenPollInterval);
         resolve(balance);
     }
 },
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:10,代码来源:blockchain.ts

示例3: reject

 (err: Error) => {
     logUtils.log(`Polling tokenBalance failed: ${err}`);
     intervalUtils.clearAsyncExcludingInterval(tokenPollInterval);
     reject(err);
 },
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:5,代码来源:blockchain.ts

示例4: _stopEmittingNetworkConnectionAndUserBalanceStateAsync

 private _stopEmittingNetworkConnectionAndUserBalanceStateAsync() {
     if (!_.isUndefined(this._watchNetworkAndBalanceIntervalId)) {
         intervalUtils.clearAsyncExcludingInterval(this._watchNetworkAndBalanceIntervalId);
     }
 }
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:5,代码来源:blockchain_watcher.ts

示例5: stop

 public stop() {
     if (!_.isUndefined(this._queueIntervalIdIfExists)) {
         intervalUtils.clearAsyncExcludingInterval(this._queueIntervalIdIfExists);
     }
 }
开发者ID:ewingrj,项目名称:0x-monorepo,代码行数:5,代码来源:dispatch_queue.ts


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