diff options
| author | Alan Conway <aconway@apache.org> | 2010-01-28 21:38:19 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-01-28 21:38:19 +0000 |
| commit | 09bc5da4cc03cb6a1f7103cd85e4249bc8a6d10f (patch) | |
| tree | 694eabfe3e3c87680a57f551815f37d6458612d9 /qpid/specs/management-schema.xml | |
| parent | 7b81d62e6dbc82ebdd931b8141a6844e9ee0ed99 (diff) | |
| download | qpid-python-09bc5da4cc03cb6a1f7103cd85e4249bc8a6d10f.tar.gz | |
QPID-2357 Broker boot sequence doesn't synchronize when clustered - patch from John Dunning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@904270 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/specs/management-schema.xml')
| -rw-r--r-- | qpid/specs/management-schema.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/qpid/specs/management-schema.xml b/qpid/specs/management-schema.xml index 1e345b5ea5..b2e732e9e3 100644 --- a/qpid/specs/management-schema.xml +++ b/qpid/specs/management-schema.xml @@ -326,6 +326,27 @@ <method name="close"/> </class> + <!-- + =============================================================== + ManagementSetupState + =============================================================== + + This thing is used during cluster recovery operations (and maybe + eventually elsewhere) to transmit assorted state from one broker to + another. At present, the two data propagated are the object number + counter and boot sequence, both of which are used for creating + object ids for newly-created objects. + + --> + <class name="ManagementSetupState"> + <!-- for reasons that aren't clear (to me, anyhow) you have to say + access="RO" to get accessor methods defined. RC or RW don't do + it. Probably this is documented someplace, but I couldn't find + it. -jrd --> + <property name="objectNum" type="uint64" access="RO"/> + <property name="bootSequence" type="uint16" access="RO"/> + </class> + <eventArguments> <arg name="altEx" type="sstr" desc="Name of the alternate exchange"/> <arg name="args" type="map" desc="Supplemental arguments or parameters supplied"/> |
