Fdc3MessageReceivedInfo

Event Info for FDC3 Received Message Event

TypeScript
export interface Fdc3MessageReceivedInfo extends
Extends

BaseContext

Properties

PropertyDescription
contextFull FDC3 Context for object related to the Event
directionDirection - always 'received'
eventTypeEventType: IntentRaised, ContextBroadcast
intentFDC3 Intent which caused Event to fire (if type is IntentRaised)
metadataMetadata associated with the FDC3 Context
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

context

Full FDC3 Context for object related to the Event

TypeScript
context: Context;
Property Value

Context

direction

Direction - always 'received'

TypeScript
direction: 'received';
Property Value

'received'

eventType

EventType: IntentRaised, ContextBroadcast

TypeScript
eventType: 'IntentRaised' | 'ContextBroadcast';
Property Value

'IntentRaised' | 'ContextBroadcast'

intent

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

TypeScript
intent?: Intent;
Property Value

Intent

metadata

Metadata associated with the FDC3 Context

TypeScript
metadata?: ContextMetadata;
Property Value

ContextMetadata

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any