diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2009-11-13 19:30:07 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2009-11-13 19:30:07 +0000 |
commit | ab7955c6747f6377c2d36fe8686c3cec39d003b2 (patch) | |
tree | c0f381ecf9ff76aed702f43f05a40f7d6cbbdb31 /specs | |
parent | 9877ca6cfbf36a34d46b42bc89a9f1fa0ef08b4b (diff) | |
download | qpid-python-ab7955c6747f6377c2d36fe8686c3cec39d003b2.tar.gz |
Add management subscription object
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@835962 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'specs')
-rw-r--r-- | specs/management-schema.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/specs/management-schema.xml b/specs/management-schema.xml index 6c00502ecb..ac75e3618c 100644 --- a/specs/management-schema.xml +++ b/specs/management-schema.xml @@ -200,6 +200,27 @@ <!-- =============================================================== + Subscription + =============================================================== + --> + <class name="Subscription"> + <property name="sessionRef" type="objId" references="Exchange" access="RC" index="y" parentRef="y"/> + <property name="queueRef" type="objId" references="Session" access="RC" index="y"/> + <property name="name" type="sstr" access="RC" index="y"/> + <property name="arguments" type="map" access="RC"/> + <property name="acquire" type="bool" access="RC"/> + <property name="ackExpected" type="bool" access="RC"/> + <property name="syncFrequency" type="uint32" access="RC"/> + <property name="resumeID" type="sstr" access="RC"/> + <property name="resumeTTL" type="uint64" access="RC"/> + <property name="exclusive" type="bool" access="RC"/> + <property name="mode" type="sstr" access="RO" desc="WINDOW or CREDIT"/> + <statistic name="delivered" type="count64" unit="message" desc="Messages delivered"/> + <statistic name="accepted" type="count64" unit="message" desc="Messages accepted"/> + </class> + + <!-- + =============================================================== Connection =============================================================== --> |