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