LiveDataChangedInfo

EventInfo returned by LiveDataChanged event

TypeScript
export interface LiveDataChangedInfo extends
Extends

BaseContext

Properties

PropertyDescription
liveDataTriggerWhat triggered the event to fire
liveReportThe Report which is currently live - only used if the Trigger is LiveData related
reportDestinationWhich Adaptable partner is the export destination for the live data
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

liveDataTrigger

What triggered the event to fire

TypeScript
liveDataTrigger: 'Connected' | 'Disconnected' | 'SnapshotSent' | 'LiveDataStarted' | 'LiveDataStopped' | 'LiveDataUpdated';
Property Value

'Connected' | 'Disconnected' | 'SnapshotSent' | 'LiveDataStarted' | 'LiveDataStopped' | 'LiveDataUpdated'

liveReport

The Report which is currently live - only used if the Trigger is LiveData related

TypeScript
liveReport?: any;
Property Value

any

reportDestination

Which Adaptable partner is the export destination for the live data

TypeScript
reportDestination: 'OpenFin' | 'ipushpull';
Property Value

'OpenFin' | 'ipushpull'

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any