diff options
| author | Alan Conway <aconway@apache.org> | 2009-11-30 21:47:17 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-11-30 21:47:17 +0000 |
| commit | d0d3f6798e0651fcf8ca6320bb3227ed751cf546 (patch) | |
| tree | 658aaf56184903a77ed6f73d082ac38c41a637a3 /qpid/cpp/src | |
| parent | 6bb0134ca322b6e50e6ec76a242f89259cd12274 (diff) | |
| download | qpid-python-d0d3f6798e0651fcf8ca6320bb3227ed751cf546.tar.gz | |
Improved documentation for PlugIn::initOrder.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@885590 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/Plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/Plugin.h b/qpid/cpp/src/qpid/Plugin.h index 3e25618ad0..4e057872b9 100644 --- a/qpid/cpp/src/qpid/Plugin.h +++ b/qpid/cpp/src/qpid/Plugin.h @@ -102,8 +102,10 @@ class Plugin : private boost::noncopyable { virtual void initialize(Target&) = 0; /** - * Initialization order, lower initOrder() plugins are - * initialized first. @see DEFAULT_INIT_ORDER + * Initialization order. If a plugin does not override this, it + * returns DEFAULT_INIT_ORDER. Plugins that need to be initialized + * earlier/later than normal can override initOrder to return + * a lower/higher value than DEFAULT_INIT_ORDER. */ QPID_COMMON_EXTERN virtual int initOrder() const; |
