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 | 9ba42cc7b5b593a94d879894d0d13276d56490aa (patch) | |
| tree | 9025ebbd90003cb434404ce1be7e47456651fb29 /specs | |
| parent | f1815fef1848e3fe006a9a4c944c6401ad7d6cc2 (diff) | |
| download | qpid-python-9ba42cc7b5b593a94d879894d0d13276d56490aa.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/qpid@904270 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 1e345b5ea5..b2e732e9e3 100644 --- a/specs/management-schema.xml +++ b/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"/> |
