本文整理汇总了TypeScript中core/scheduler/scheduler.factory.SchedulerFactory.createScheduler方法的典型用法代码示例。如果您正苦于以下问题:TypeScript factory.SchedulerFactory.createScheduler方法的具体用法?TypeScript factory.SchedulerFactory.createScheduler怎么用?TypeScript factory.SchedulerFactory.createScheduler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core/scheduler/scheduler.factory.SchedulerFactory
的用法示例。
在下文中一共展示了factory.SchedulerFactory.createScheduler方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: createApplication
/**
* This is mostly used in tests
*/
public createApplication(name: string, ...dataSources: any[]): Application {
if (Array.isArray(dataSources[0])) {
dataSources = dataSources[0];
}
const application = new Application(name, this.schedulerFactory.createScheduler(), this.$q, this.$log);
dataSources.forEach(ds => this.addDataSource(ds, application));
return application;
}
示例2: Application
return this.API.one('applications', name).get().then((fromServer: Application) => {
const application: Application = new Application(name, this.schedulerFactory.createScheduler(), this.$q, this.$log);
application.attributes = fromServer.attributes;
this.splitAttributes(application.attributes, ['accounts', 'cloudProviders']);
this.addDataSources(application);
application.refresh();
return application;
});
示例3: createApplication
/**
* This is only used in tests
*/
public createApplication(...dataSources: any[]): Application {
if (Array.isArray(dataSources[0])) {
dataSources = dataSources[0];
}
const application = new Application('app', this.schedulerFactory.createScheduler(), this.$q, this.$log);
dataSources.forEach(ds => this.addDataSource(new DataSourceConfig(ds), application));
return application;
}
示例4:
.run(function (schedulerFactory: SchedulerFactory,
authenticationInitializer: AuthenticationInitializer) {
if (SETTINGS.authEnabled) {
// schedule deck to re-authenticate every 10 min.
schedulerFactory.createScheduler(SETTINGS.authTtl || 600000)
.subscribe(() => authenticationInitializer.reauthenticateUser());
authenticationInitializer.authenticateUser();
}
});
示例5: createNotFoundApplication
public createNotFoundApplication(name: string): Application {
const application = new Application(name, this.schedulerFactory.createScheduler(), this.$q, this.$log);
this.addDataSource({ key: 'serverGroups', lazy: true }, application);
application.notFound = true;
return application;
}
示例6: createStandaloneApplication
public createStandaloneApplication(name: string): Application {
const application = new Application(name, this.schedulerFactory.createScheduler(), this.$q, this.$log);
application.isStandalone = true;
return application;
}
示例7: createNotFoundApplication
public createNotFoundApplication(name: string): Application {
const application = new Application(name, this.schedulerFactory.createScheduler(), this.$q, this.$log);
application.notFound = true;
return application;
}