MessageBusSource

MessageBusSource

Experimental Interface

Interface Overview

interface MessageBusSource {
  initChannel(channel: string, runInZone: boolean) : void
  attachToZone(zone: NgZone) : void
  from(channel: string) : EventEmitter<any>
}

Interface Description

Interface Details

initChannel(channel: string, runInZone: boolean) : void

Sets up a new channel on the MessageBusSource. MUST be called before calling from on the channel. If runInZone is true then the source will emit events inside the angular zone. if runInZone is false then the source will emit events inside the global zone.

attachToZone(zone: NgZone) : void

Assigns this source to the given zone. Any channels which are initialized with runInZone set to true will emit events that will be executed within the given zone.

from(channel: string) : EventEmitter<any>

Returns an EventEmitter that emits every time a message is received on the given channel.

exported from platform-webworker-index, defined in platform-webworker/src/web_workers/shared/message_bus.ts

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/docs/ts/latest/api/platform-webworker/index/MessageBusSource-interface.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部