Dflux
  • Welcome
  • 👍Getting-started
    • Architecture
    • Installing
    • FAQ
    • How to contribute?
    • Privacy
  • DFXE (ENF)
    • Architecture
    • Concepts
      • Flow
      • Envv
      • Config
      • Fsm
      • Messages
      • Testing
      • Settings
      • Templates
      • Report
    • API Reference
    • Examples
    • Observability
  • DFXP
    • Architecture
  • NF's
    • Gnb
    • Enb
    • Protocols
  • cli
    • dfxe
    • dfxt
    • dfxp
  • Release Notes
Powered by GitBook
On this page
  • Message format
  • Message name
  • Message type
  • Message

Was this helpful?

  1. DFXE (ENF)
  2. Concepts

Messages

A list of message must be configured as part of the flow for the FSM to describe the exact message to be sent on each message action.

messages:
    - name: message1
      type: message1type
      message: '{
        "hello": world"
      }'
    - name: message2
      type: message2type
      message: '{
        "hello": world2"
      }'

Message format

name: "message name" - message name that is used by the message action.
type: message-type - message type 
message: '' - message body

Message name

is used by the FSM message action, for example on a state transition we defined an action as message.MESSAGE1 than in the list of message there must be a message which have the name MESSAGE1

Message type

is depended on the NF that is configured, for exact supported message types see in the NF's message type section.

Message

is the message body as a json string, for exact supported message types see in the NF's message type section.

PreviousFsmNextTesting

Last updated 2 years ago

Was this helpful?