Fdc3MessageSentInfo

Event Info for FDC3 Sent Message Event

TypeScript
export interface Fdc3MessageSentInfo extends
Extends

BaseContext

Properties

PropertyDescription
appTarget application for the message
contextFull FDC3 Context for object related to the Event
directionDirection - always 'sent'
eventTypeEvent Type: RaiseIntent, RaiseIntentForContext,BroadcastMessage
intentFDC3 Intent which caused Event to fire (if type is RaiseIntent)
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

app

Target application for the message

TypeScript
app?: AppIdentifier;
Property Value

AppIdentifier

context

Full FDC3 Context for object related to the Event

TypeScript
context: Context;
Property Value

Context

direction

Direction - always 'sent'

TypeScript
direction: 'sent';
Property Value

'sent'

eventType

Event Type: RaiseIntent, RaiseIntentForContext,BroadcastMessage

TypeScript
eventType: 'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage';
Property Value

'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage'

intent

FDC3 Intent which caused Event to fire (if type is RaiseIntent)

TypeScript
intent?: Intent;
Property Value

Intent

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any