summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/Plugin.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-02-01 16:03:02 +0000
committerAlan Conway <aconway@apache.org>2008-02-01 16:03:02 +0000
commitdf599b1716535909317e61f4b43516d48373ad1c (patch)
tree7971d8abe970f9711cf5ba7d817cf57fc0b85a87 /cpp/src/qpid/Plugin.h
parente5450586ffe0d33c92eed1b4c961e9b150f4663c (diff)
downloadqpid-python-df599b1716535909317e61f4b43516d48373ad1c.tar.gz
Added cluster URL configuration, defaults to all interfaces.
src/qpid/Plugin.h - added doxygen src/qpid/Url.cpp,.h - cache string rep, op==, istream/ostream ops. src/qpid/broker/Broker.h,.cpp - removed getUrl() src/qpid/cluster/Cluster.h,.cpp - use Url class src/qpid/cluster/ClusterPlugin.cpp - added --url configuration. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@617533 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/Plugin.h')
-rw-r--r--cpp/src/qpid/Plugin.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/qpid/Plugin.h b/cpp/src/qpid/Plugin.h
index 5aed844b43..e040662866 100644
--- a/cpp/src/qpid/Plugin.h
+++ b/cpp/src/qpid/Plugin.h
@@ -70,15 +70,17 @@ class Plugin : boost::noncopyable
/**
* Initialize Plugin functionality on a Target.
- *
* Plugins should ignore targets they don't recognize.
+ *
+ * Called before the target itself is initialized.
*/
virtual void earlyInitialize(Target&) = 0;
/**
* Initialize Plugin functionality on a Target.
- *
* Plugins should ignore targets they don't recognize.
+ *
+ * Called after the target is fully initialized.
*/
virtual void initialize(Target&) = 0;