|
method |
description and examples |
variables data type |
|
retrieves 4gl data from the message content:
DEFINE cust_rec RECORD ... CALL msg.get(cust_rec)
|
any |
|
|
initializes a ZMQ.Msg object:
DEFINE msg ZMQ.Msg ... CALL msg.Init("Your message")
|
any |
|
|
moves the message content to another message:
DEFINE msg1, msg2 ZMQ.Msg ... CALL msg1.Move(msg2)
|
||
|
copies the message content to another message:
DEFINE msg1, msg2 ZMQ.Msg ... CALL msg1.Copy(msg2)
|
||
|
retrieves the size of the message content in bytes:
CALL msg.Size()
|
|
|
|
clears the message content:
CALL msg.Clear()
|
|