Retrieves 4gl data from the message content:
DEFINE cust_rec RECORD
CALL msg.get(cust_rec)
Variables data type: any
Initializes a ZMQ.Msg object:
DEFINE msg ZMQ.Msg
CALL msg.Init("Your message")
Variables data type: any
Moves the message content to another message:
DEFINE msg1, msg2 ZMQ.Msg
CALL msg1.Move(msg2)
Variables data type: ZMQ.Msg
Copies the message content to another message:
DEFINE msg1, msg2 ZMQ.Msg
CALL msg1.Copy(msg2)
Variables data type: ZMQ.Msg
Retrieves the size of the message content in bytes:
CALL msg.Size()
Clears the message content:
CALL msg.Clear()