setQueueProperty

setQueueProperty(propname: String;
                 value:    Any);

The setQueueProperty method of the JadeGenericQueue class sets a user-defined property of the receiver specified in the propname parameter to the value specified in the value parameter.

If the property specified in the propname parameter is invalid, an exception is raised.

You should not use the setQueueProperty method as a replacement for direct assignment to a property when the property name is known at compile time, as it incurs additional overhead and prevents the compiler from checking the type compatibility of the value being assigned.

You should use it only in special cases when property names are determined at run time.