本文整理汇总了TypeScript中core/cache/infrastructureCaches.service.InfrastructureCacheService.clearCache方法的典型用法代码示例。如果您正苦于以下问题:TypeScript service.InfrastructureCacheService.clearCache方法的具体用法?TypeScript service.InfrastructureCacheService.clearCache怎么用?TypeScript service.InfrastructureCacheService.clearCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core/cache/infrastructureCaches.service.InfrastructureCacheService
的用法示例。
在下文中一共展示了service.InfrastructureCacheService.clearCache方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: deleteLoadBalancer
public deleteLoadBalancer(command: ILoadBalancerDeleteCommand, application: Application): ng.IPromise<ITask> {
command.type = 'deleteLoadBalancer';
this.infrastructureCaches.clearCache('loadBalancers');
return this.taskExecutor.executeTask({
job: [command],
application: application,
description: `Delete load balancer: ${command.loadBalancerName}`
});
}
示例2: upsertLoadBalancer
public upsertLoadBalancer(command: ILoadBalancerUpsertCommand, application: Application, descriptor: string, params: any = {}): ng.IPromise<ITask> {
Object.assign(command, params);
command.type = 'upsertLoadBalancer';
this.infrastructureCaches.clearCache('loadBalancers');
return this.taskExecutor.executeTask({
job: [command],
application: application,
description: `${descriptor} Load Balancer: ${command['name']}`,
});
}
示例3: deleteSecurityGroup
public deleteSecurityGroup(securityGroup: ISecurityGroup,
application: Application,
params: ISecurityGroupJob): IPromise<ITask> {
params.type = 'deleteSecurityGroup';
params.securityGroupName = securityGroup.name;
params.regions = [securityGroup.region];
params.credentials = securityGroup.accountId;
const operation: IPromise<ITask> = this.taskExecutor.executeTask({
job: [params],
application: application,
description: `Delete Security Group: ${securityGroup.name}`
});
this.infrastructureCaches.clearCache('securityGroups');
return operation;
}
示例4: upsertSecurityGroup
public upsertSecurityGroup(securityGroup: ISecurityGroup,
application: Application,
description: string,
params: any = {}): IPromise<ITask> {
params.type = 'upsertSecurityGroup';
params.credentials = securityGroup.credentials || securityGroup.accountName;
const job: ISecurityGroupJob = Object.assign(securityGroup, params);
const operation: IPromise<ITask> = this.taskExecutor.executeTask({
job: [job],
application: application,
description: `${description} Security Group: ${securityGroup.name}`
});
this.infrastructureCaches.clearCache('securityGroups');
return operation;
}
示例5: onTaskComplete
public onTaskComplete (loadBalancer: IGceLoadBalancer): void {
this.infrastructureCaches.clearCache('healthCheck');
this.application.getDataSource('loadBalancers').refresh();
this.application.getDataSource('loadBalancers')
.onNextRefresh(this.$scope, () => this.onApplicationRefresh(loadBalancer));
}