| Package | org.springextensions.actionscript.eventbus |
| Class | public class EventBusShareSettings |
| Inheritance | EventBusShareSettings Object |
| Property | Defined By | ||
|---|---|---|---|
| sharedTopics : Vector.<Object>
An optional Array of topic objects whose events will be shared between te eventbuses. | EventBusShareSettings | ||
| shareKind : EventBusShareKind
Describes the directions in which two eventbuses listen to eachother. | EventBusShareSettings | ||
| shareRegularEvents : Boolean = true
If true, events that are dispatched without a topic will be shared. | EventBusShareSettings | ||
| Method | Defined By | ||
|---|---|---|---|
EventBusShareSettings(shareRegular:Boolean = true, kind:EventBusShareKind = null, topics:Vector.<Object> = null)
Creates a new EventBusShareSettings instance. | EventBusShareSettings | ||
toString():String | EventBusShareSettings | ||
| sharedTopics | property |
public var sharedTopics:Vector.<Object>
An optional Array of topic objects whose events will be shared between te eventbuses.
The default value is null.
| shareKind | property |
public var shareKind:EventBusShareKindDescribes the directions in which two eventbuses listen to eachother.
The default value is EventBusShareKind.BOTH_WAYS.
| shareRegularEvents | property |
public var shareRegularEvents:Boolean = true
If true, events that are dispatched without a topic will be shared.
The default value is true.
| EventBusShareSettings | () | Constructor |
public function EventBusShareSettings(shareRegular:Boolean = true, kind:EventBusShareKind = null, topics:Vector.<Object> = null)
Creates a new EventBusShareSettings instance.
shareRegular:Boolean (default = true) — If true, events that are dispatched without a topic will be shared. Default is true.
| |
kind:EventBusShareKind (default = null) — Describes the directions in which two eventbuses listen to eachother. Default is EventBusShareKind.BOTH_WAYS.
| |
topics:Vector.<Object> (default = null) — An optional Array of topic objects whose events will be shared between te eventbuses. Default is null.
|
| toString | () | method |
public function toString():StringReturnsString |