zmq.Msg methods

get()

Retrieves 4gl data from the message content:

DEFINE cust_rec RECORD

CALL msg.get(cust_rec)

Variables data type: any

init()

Initializes a ZMQ.Msg object:

DEFINE msg ZMQ.Msg

CALL msg.Init("Your message")

Variables data type: any

move()

Moves the message content to another message:

DEFINE msg1, msg2 ZMQ.Msg

CALL msg1.Move(msg2)

Variables data type: ZMQ.Msg

copy()

Copies the message content to another message:

DEFINE msg1, msg2 ZMQ.Msg

CALL msg1.Copy(msg2)

Variables data type: ZMQ.Msg

size()

Retrieves the size of the message content in bytes:

CALL msg.Size()

clear()

Clears the message content:

CALL msg.Clear()

 

Contact Us

Privacy Policy

Copyright © 2025 Querix, (UK) Ltd.