summaryrefslogtreecommitdiff
path: root/cpp/examples/qmf-agent
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-10-07 21:47:35 +0000
committerTed Ross <tross@apache.org>2008-10-07 21:47:35 +0000
commit9d199b74aee76859480a7ee92d95c6db42028b43 (patch)
treeca09aace4aaac2afa9650cc78833d30b056313a9 /cpp/examples/qmf-agent
parent41d33af55b9fbf4c664ccb56accb1a37bd1ef006 (diff)
downloadqpid-python-9d199b74aee76859480a7ee92d95c6db42028b43.tar.gz
QPID-1327 - Event support for Management
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@702651 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/qmf-agent')
-rw-r--r--cpp/examples/qmf-agent/example.cpp3
-rw-r--r--cpp/examples/qmf-agent/schema.xml17
2 files changed, 10 insertions, 10 deletions
diff --git a/cpp/examples/qmf-agent/example.cpp b/cpp/examples/qmf-agent/example.cpp
index 7c514b1010..e24e729e1d 100644
--- a/cpp/examples/qmf-agent/example.cpp
+++ b/cpp/examples/qmf-agent/example.cpp
@@ -26,6 +26,7 @@
#include "qmf/org/apache/qpid/agent/example/Parent.h"
#include "qmf/org/apache/qpid/agent/example/Child.h"
#include "qmf/org/apache/qpid/agent/example/ArgsParentCreate_child.h"
+#include "qmf/org/apache/qpid/agent/example/EventChildCreated.h"
#include "qmf/org/apache/qpid/agent/example/Package.h"
#include <unistd.h>
@@ -129,7 +130,7 @@ Manageable::status_t CoreClass::ManagementMethod(uint32_t methodId, Args& args,
children.push_back(child);
- mgmtObject->event_childCreated(ioArgs.i_name);
+ agent->raiseEvent(_qmf::EventChildCreated(ioArgs.i_name));
return STATUS_OK;
}
diff --git a/cpp/examples/qmf-agent/schema.xml b/cpp/examples/qmf-agent/schema.xml
index 22ecabb8a5..1bf701a655 100644
--- a/cpp/examples/qmf-agent/schema.xml
+++ b/cpp/examples/qmf-agent/schema.xml
@@ -37,14 +37,6 @@
<arg name="name" dir="I" type="sstr"/>
<arg name="childRef" dir="O" type="objId"/>
</method>
-
- <event name="childCreated">
- <arg name="name" type="sstr"/>
- </event>
-
- <event name="childDestroyed">
- <arg name="name" type="sstr"/>
- </event>
</class>
@@ -59,7 +51,14 @@
<statistic name="count" type="count64" unit="tick" desc="Counter that increases monotonically"/>
- <method name="delete"/>
+ <method name="delete"/>
</class>
+
+ <eventArguments>
+ <arg name="childName" type="sstr"/>
+ </eventArguments>
+
+ <event name="ChildCreated" args="childName"/>
+ <event name="ChildDestroyed" args="childName"/>
</schema>