Fdc3MessageSentInfo

Event Info for FDC3 Sent Message Event

TypeScript
export interface Fdc3MessageSentInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
appAppIdentifierTarget application for the message
contextContextFull FDC3 Context for object related to the Event
direction'sent'Direction - always 'sent'
eventType'RaiseIntent' | 'RaiseIntentForContext' | 'BroadcastMessage'Event Type: RaiseIntent, RaiseIntentForContext,BroadcastMessage
intentIntentFDC3 Intent which caused Event to fire (if type is RaiseIntent)
adaptableContextanyCustom 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