LiveDataChangedInfo

EventInfo returned by LiveDataChanged event

TypeScript
export interface LiveDataChangedInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
liveDataTrigger'Connected' | 'Disconnected' | 'SnapshotSent' | 'LiveDataStarted' | 'LiveDataStopped' | 'LiveDataUpdated'What triggered the event to fire
liveReportanyThe Report which is currently live - only used if the Trigger is LiveData related
reportDestination'OpenFin' | 'ipushpull'Which Adaptable partner is the export destination for the live data
adaptableContextanyCustom 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