(Filename: Actor Framework.lvlib:Self-Addressed Msg.lvclass:Address Message.vi)

Creates a self-addressed message by storing an enqueuer inside a message. Later, when you send the message with the Send Self-Addressed Message method, the message will be sent to the actor that uses this enqueuer.


icon

Inputs/Outputs

  • cActor_Framework_lvlib_Message_Enqueuerlvclass.png Destination

    Destination specifies the enqueuer of the actor that will receive the self-addressed message.

  • cActor_Framework_lvlib_Messagelvclass.png Message

    Message specifies the message to send.

  • cenum.png Message Priority (Normal)

    Message Priority specifies the placement of the Message in the message queue. This placement determines when the actor will process the message.

    0Low—Specifies that the message will be processed after messages of all other priorities. Multiple low-priority messages are processed in the order they are sent.
    1Normal (Default)—Specifies that the message will be processed after critical- and high-priority messages but before low-priority ones. Multiple normal-priority messages are processed in the order they are sent.
    2High—Specifies that the message will be processed first. Multiple high-priority messages are processed in the order they are sent. High-priority messages can be superseded only by an Emergency Stop or Last Ack message, both of which have critical priority.
  • iSelf-Addressed_Msglvclass.png Self-Addressed Message

    Self-Addressed Message returns a message that consists of the Message, Destination, and Message Priority.