Property | Defined by | ||
---|---|---|---|
![]() | bookEnd : BookEndRow
The Book End for this data collection element per the IDataItem implementation
| DataItemGeneric | |
![]() | bookEndTime : Date
Internal variable to store the Book End date for this item.
| DataItemGeneric | |
![]() | bookStart : BookStartRow
The Book Start for this data collection element per the IDataItem implementation
| DataItemGeneric | |
![]() | bookStartTime : Date
Internal variable to store the Book Start date for this item.
| DataItemGeneric | |
![]() | dataWorkerOptions : uint
An unsigned integer (uint) that disables various elements of the data collection to be stored into the database
| DataItemGeneric | |
![]() | endEvent : String
The event that will dispatch signaling the end of data collection of the generic item.
| DataItemGeneric | |
![]() | friendlyName : String
A human readable name for your generic item
| DataItemGeneric | |
itemType : String [read-only]
| DataItemSlide | ||
![]() | properties : Array
An array of string that correlate to public properties of the Target object.
| DataItemGeneric | |
![]() | removeOnEndEvent : Boolean
A boolean to tell the data item worker to remove it from it's internal list once it has been pushed to the database.
| DataItemGeneric | |
slideState : String
The state name that was provided when the Data Item Description was created.
| DataItemSlide | ||
![]() | startEvent : String
The event that will dispatch signaling the beginning of data collection
| DataItemGeneric | |
![]() | target : *
This will be the object responsible for providing values for the properties and dispatching the begin and end data collection events.
| DataItemGeneric |
Method | Defined by | ||
---|---|---|---|
DataItemSlide(target:IPresentationModule, dataWorkerOptions:uint, slideState:String)
The method enables data collection of an single slide within a Presentation Module.
| DataItemSlide | ||
![]() |
addBookEndSlotData(args:Array):void
Pushes an array of data to be stored into the data collection database.
| DataItemGeneric | |
![]() |
addBookEndSlotDataSingle(args:Array):void
Similar to the addBookEndSlotData it will add data to the data slots, however, it will store an unlimited amount to the database.
| DataItemGeneric | |
![]() |
addBookStartSlotData(args:Array):void
Pushes an array of data to be stored into the DataCollection database.
| DataItemGeneric | |
![]() |
addBookStartSlotDataSingle(args:Array):void
Similar to the addBookStartSlotData it will add data to the data slots, however, it will store an unlimited amount to the database.
| DataItemGeneric |
itemType | property |
itemType:String
[read-only]Implementation
public function get itemType():String
slideState | property |
slideState:String
[read-write]The state name that was provided when the Data Item Description was created.
Implementation public function get slideState():String
public function set slideState(value:String):void
DataItemSlide | () | constructor |
public function DataItemSlide(target:IPresentationModule, dataWorkerOptions:uint, slideState:String)
The method enables data collection of an single slide within a Presentation Module. This item should be declared in
the initalize event of the Presentation Module as the Data Item Worker will rely on events that
are dispatched as soon as the Presentation Module is added to the stage.
var diSlide:DataItemSlide = new DataItemSlide([Presentation Module Instance],DataWorkerOptions.USE_DEFAULTS,[Slide State Name]);
DataCollectionModule.addDataCollectionItem(diSlide);
target:IPresentationModule — The Presenation Module that contains the state for the slide that is being data collected.
|
|
dataWorkerOptions:uint — Any data worker options that you would like disabled.
|
|
slideState:String — The slide state name as listed in the eVE Database.
|