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 | |
callId : int
The call id that was provided when the Data Item Description was created
| DataItemCall | ||
callList : Array
Contains a list of all the slides in a call that will be pushed to the database for cross referencing purposes.
| DataItemCall | ||
![]() | 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]
| DataItemCall | ||
![]() | 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 | |
![]() | 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 | ||
---|---|---|---|
DataItemCall(target:IPresentationModule, dataWorkerOptions:uint, callId:int)
This method enables the data collection of a single call within a Presentation Module.
| DataItemCall | ||
![]() |
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 | |
updateCallList():void
| DataItemCall |
callId | property |
callId:int
[read-write]The call id that was provided when the Data Item Description was created
Implementation public function get callId():int
public function set callId(value:int):void
callList | property |
callList:Array
[read-write]Contains a list of all the slides in a call that will be pushed to the database for cross referencing purposes.
Implementation public function get callList():Array
public function set callList(value:Array):void
itemType | property |
itemType:String
[read-only]Implementation
public function get itemType():String
DataItemCall | () | constructor |
public function DataItemCall(target:IPresentationModule, dataWorkerOptions:uint, callId:int)
This method enables the data collection of a single call 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.
Parameterstarget:IPresentationModule — The Presentation Module that will be used to display information for the calls.
|
|
dataWorkerOptions:uint — Any options that you would like disabled.
|
|
callId:int — The call id in the eVE Database that pertains to the call that you would like to data collect.
|
var diCall:DataItemCall = new DataItemCall([Presentation Module Instance],DataWorkerOptions.USE_DEFAULTS,[Call ID in database]); DataCollectionModule.addDataCollectionItem(diCall);
updateCallList | () | method |
public function updateCallList():void