Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
>>> queue.byteTotalEnqueues
19116
>>>

The proxy objects to not automatically track changes that occur on the real objects. In other words, if the real queue enqueues more bytes, viewing the byteTotalEnqueues statistic will show the same number as it did the first time. To get updated data on a proxy object, use the update function call:

No Format

>>> queue.update()
>>> queue.byteTotalEnqueues
19783
>>>
Note
titleBe Advised

The update method was added after the M4 release of Qpid/Qmf. It may not be available in your libraries.

Invoking Methods on an Object

...