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


TypeScript MessageBus.initChannel方法代码示例

本文整理汇总了TypeScript中@angular/platform-webworker/src/web_workers/shared/message_bus.MessageBus.initChannel方法的典型用法代码示例。如果您正苦于以下问题:TypeScript MessageBus.initChannel方法的具体用法?TypeScript MessageBus.initChannel怎么用?TypeScript MessageBus.initChannel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/platform-webworker/src/web_workers/shared/message_bus.MessageBus的用法示例。


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

示例1: beforeEach

 beforeEach(() => {
   const buses = createPairedMessageBuses();
   uiBus = buses.ui;
   workerBus = buses.worker;
   workerBus.initChannel('ng-Router');
   uiBus.initChannel('ng-Router');
   broker = new SpyMessageBroker();
 });
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:8,代码来源:platform_location_spec.ts

示例2: inject

       inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
         const CHANNEL_ONE = 'CHANNEL 1';
         const CHANNEL_TWO = 'CHANNEL 2';
         const MESSAGE_ONE = 'This is a message on CHANNEL 1';
         const MESSAGE_TWO = 'This is a message on CHANNEL 2';
         let callCount = 0;
         bus.initChannel(CHANNEL_ONE, false);
         bus.initChannel(CHANNEL_TWO, false);

         const firstFromEmitter = bus.from(CHANNEL_ONE);
         firstFromEmitter.subscribe({
           next: (message: any) => {
             expect(message).toEqual(MESSAGE_ONE);
             callCount++;
             if (callCount == 2) {
               async.done();
             }
           }
         });
         const secondFromEmitter = bus.from(CHANNEL_TWO);
         secondFromEmitter.subscribe({
           next: (message: any) => {
             expect(message).toEqual(MESSAGE_TWO);
             callCount++;
             if (callCount == 2) {
               async.done();
             }
           }
         });

         const firstToEmitter = bus.to(CHANNEL_ONE);
         firstToEmitter.emit(MESSAGE_ONE);

         const secondToEmitter = bus.to(CHANNEL_TWO);
         secondToEmitter.emit(MESSAGE_TWO);
       }));
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:36,代码来源:message_bus_spec.ts

示例3: it

    it('should broadcast', inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
         const CHANNEL = 'CHANNEL 1';
         const MESSAGE = 'TESTING';
         const NUM_LISTENERS = 2;
         bus.initChannel(CHANNEL, false);

         let callCount = 0;
         const emitHandler = (message: any) => {
           expect(message).toEqual(MESSAGE);
           callCount++;
           if (callCount == NUM_LISTENERS) {
             async.done();
           }
         };

         for (let i = 0; i < NUM_LISTENERS; i++) {
           const emitter = bus.from(CHANNEL);
           emitter.subscribe({next: emitHandler});
         }

         const toEmitter = bus.to(CHANNEL);
         toEmitter.emit(MESSAGE);
       }));
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:23,代码来源:message_bus_spec.ts

示例4: setup

 function setup(runInZone: boolean, zone: NgZone) {
   bus.attachToZone(zone);
   bus.initChannel(CHANNEL, runInZone);
 }
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:4,代码来源:message_bus_spec.ts


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