本文整理汇总了TypeScript中core/retry/retry.service.RetryService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.RetryService类的具体用法?TypeScript service.RetryService怎么用?TypeScript service.RetryService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.RetryService类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
const sources = idGroups.map(idGroup => this.retryService.buildRetrySequence<IEntityTags[]>(
() => this.API.one('tags')
.withParams({
entityType: entityType.toLowerCase(),
entityId: idGroup
}).getList(),
succeeded, 1, 0)
示例2: findImages
public findImages(params: IFindImageParams): ng.IPromise<IDockerImage[]> {
return this.retryService.buildRetrySequence<IDockerImage[]>(() => this.API.all('images/find')
.getList(params), (results: IDockerImage[]) => (results.length > 0), 10, 1000)
.then((results: IDockerImage[]) => results)
.catch((): IDockerImage[] => []);
}
示例3: findTags
public findTags(params: IFindTagsParams): ng.IPromise<string[]> {
return this.retryService.buildRetrySequence<String[]>(() => this.API.all('images/tags')
.getList(params), (results: string[]) => (results.length > 0), 10, 1000)
.then((results: string[]) => results)
.catch((): string[] => []);
}