MessageBusSink
interface
interface MessageBusSink {
  initChannel(channel: string, runInZone: boolean): void
  attachToZone(zone: NgZone): void
  to(channel: string): EventEmitter<any>
} Class implementations
Methods
|   initChannel()    | ||||
|---|---|---|---|---|
| Sets up a new channel on the MessageBusSink. MUST be called before calling to on the channel. If runInZone is true the sink will buffer messages and send only once the zone exits. if runInZone is false the sink will send messages immediately. | ||||
| 
 | 
| channel | Type:  | 
| runInZone | Type:  | 
Returns
void
|   attachToZone()    | ||
|---|---|---|
| Assigns this sink to the given zone. Any channels which are initialized with runInZone set to true will wait for the given zone to exit before sending messages. | ||
| 
 | 
| zone | Type:  | 
Returns
void
|   to()    | ||
|---|---|---|
| Returns an  | ||
| 
 | 
| channel | Type:  | 
Returns
EventEmitter<any>
    © 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
    https://v6.angular.io/api/platform-webworker/MessageBusSink