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


TypeScript container-ts.Container类代码示例

本文整理汇总了TypeScript中container-ts.Container的典型用法代码示例。如果您正苦于以下问题:TypeScript Container类的具体用法?TypeScript Container怎么用?TypeScript Container使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: init

    init(db) {
        this.container = ContainerBuilder.create();

        this.setupRepositories(db);
        this.setupRestServices();

        if(this.args.mockGit) {
            this.container.add(new auth.MockAuthenticationService(), 'authenticationService');
            this.container.add(new github.GitServiceFactoryMock(), 'gitServiceFactory');
        } else {
            this.container.add(new auth.GithubAuthenticationService(), 'authenticationService');
            this.container.add(new github.GithubServiceFactory(), 'gitServiceFactory');
        }

        this.container.add(new PersistedBuildQueue(), 'buildQueue');

        this.container.add(new BuildRequestController(), 'buildRequestController');

        this.container.add(new PipelineController(), 'pipelineController');

        this.container.add(new BuildResultController(), 'buildResultController');

        this.container.add(new api.ExpressServer(), 'expressServer');

        this.container.init();
    }
开发者ID:mserranom,项目名称:lean-ci,代码行数:26,代码来源:app.ts

示例2: setupRepositories

 private setupRepositories(db) {
     this.container.add(new repository.MongoDBRepository<model.UserCredentialsSchema>('user_credentials', db), 'userCredentialsRepository');
     this.container.add(new repository.MongoDBRepository<model.RepositorySchema>('repositories', db), 'repositoriesRepository');
     this.container.add(new repository.MongoDBRepository<model.BuildSchema>('builds', db), 'queuedBuildsRepository');
     this.container.add(new repository.MongoDBRepository<model.DependencyGraphSchema>('dependency_graphs', db), 'dependencyGraphsRepository');
     this.container.add(new repository.MongoDBRepository<model.PipelineSchema>('pipelines', db), 'pipelinesRepository');
 }
开发者ID:mserranom,项目名称:lean-ci,代码行数:7,代码来源:app.ts

示例3: debugUpdatePipelineAsFinishedSuccesfully

    async debugUpdatePipelineAsFinishedSuccesfully(id : string) : Promise<void> {
        let pipeline = await this.getPipeline(parseInt(id));
        pipeline.status = model.PipelineStatus.SUCCESS;

        let repo : repository.DocumentRepositoryQ<model.PipelineSchema> = this._app.get('pipelinesRepository');
        expect(repo).not.to.be.null;
        await repo.updateQ({_id : pipeline._id}, pipeline);

        let finishedPipelines = await this.getFinishedPipelines();
        expect(finishedPipelines.some(x => x._id == id))
    }
开发者ID:mserranom,项目名称:lean-ci,代码行数:11,代码来源:AppDriver.ts

示例4: setupRestServices

    private setupRestServices() {
        this.container.add(new api.ExpressServer(), 'expressServer');

        this.container.add(new Repositories(), 'rest.Repositories');
        this.container.add(new Ping(), 'rest.Ping');
        this.container.add(new Builds(), 'rest.Builds');
        this.container.add(new DependencyGraphs(), 'rest.DependencyGraphs');
        this.container.add(new Pipelines(), 'rest.Pipelines');
        this.container.add(new BuildRequests(), 'rest.BuildRequests');
    }
开发者ID:mserranom,项目名称:lean-ci,代码行数:10,代码来源:app.ts

示例5: stop

 stop() {
     let server : api.ExpressServer = this.container.get('expressServer');
     server.stop();
 }
开发者ID:mserranom,项目名称:lean-ci,代码行数:4,代码来源:app.ts

示例6: getComponent

 getComponent(id : string) : any {
     return this.container.get(id);
 }
开发者ID:mserranom,项目名称:lean-ci,代码行数:3,代码来源:app.ts


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