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 | b6040913d9b35b3c94f527b35fd8feea2e9fd39d (patch) | |
tree | e846f3c06a555f39bf25d4bea410d6450988ef77 /cpp/src | |
parent | 7a70ee7193a85ceb52cbfe3df2684e947cee9456 (diff) | |
download | qpid-python-b6040913d9b35b3c94f527b35fd8feea2e9fd39d.tar.gz |
Improved documentation for PlugIn::initOrder.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@885590 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/Plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/qpid/Plugin.h b/cpp/src/qpid/Plugin.h index 3e25618ad0..4e057872b9 100644 --- a/cpp/src/qpid/Plugin.h +++ b/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; |