diff options
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; |