Help Angular by taking a 1 minute survey!Go to surveyHome

MessageBusSource

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

Class implementations

Methods

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.

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

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.

attachToZone(zone: NgZone): void
      
      attachToZone(zone: NgZone): void
    
Parameters
zone NgZone
Returns

void

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

from(channel: string): EventEmitter<any>
      
      from(channel: string): EventEmitter<any>
    
Parameters
channel string
Returns

EventEmitter<any>