Fdc3MessageReceivedInfo

Event Info for FDC3 Received Message Event

TypeScript
export interface Fdc3MessageReceivedInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
contextContextFull FDC3 Context for object related to the Event
direction'received'Direction - always 'received'
eventType'IntentRaised' | 'ContextBroadcast'EventType: IntentRaised, ContextBroadcast
intentIntentFDC3 Intent which caused Event to fire (if type is IntentRaised)
metadataContextMetadataMetadata associated with the FDC3 Context
adaptableContextanyCustom 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