MessageBusSource
interface
interface MessageBusSource { initChannel(channel: string, runInZone: boolean): void attachToZone(zone: NgZone): void from(channel: string): EventEmitter<any> }
Class implementations
Methods
initChannel() | ||||||
---|---|---|---|---|---|---|
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. | ||||||
|
channel | string | |
runInZone | boolean |
Returns
void
attachToZone() |
---|
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() |
---|
Returns an |
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v7.angular.io/api/platform-webworker/MessageBusSource