summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-05-17 23:47:13 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-05-17 23:47:13 +0200
commit031601a0c5aa944493660f991d66702cc7e52755 (patch)
tree0742586d8e18762e20193dc8e25aeb1a60193e7d /plugins
parent65bc678960567038ca4d07d1f9c5784b6c7a7834 (diff)
event sender: better naming
Change-Id: I82d918cd14b1e368ef509fa3a1b21c3e55a6b98d Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/afm-main-plugin/afm-main-plugin.c6
-rw-r--r--plugins/samples/HelloWorld.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/afm-main-plugin/afm-main-plugin.c b/plugins/afm-main-plugin/afm-main-plugin.c
index 41e55404..786468a1 100644
--- a/plugins/afm-main-plugin/afm-main-plugin.c
+++ b/plugins/afm-main-plugin/afm-main-plugin.c
@@ -46,7 +46,7 @@ static const char _uninstall_[] = "uninstall";
static const char _uri_[] = "uri";
static const struct AFB_interface *afb_interface;
-static struct afb_evmgr evmgr;
+static struct afb_event_sender event_sender;
static struct jbus *jbus;
@@ -69,7 +69,7 @@ static struct memo *make_memo(struct afb_req request, const char *method)
static void application_list_changed(const char *data, void *closure)
{
- afb_evmgr_push(evmgr, "application-list-changed", NULL);
+ afb_event_sender_push(event_sender, "application-list-changed", NULL);
}
static struct json_object *embed(const char *tag, struct json_object *obj)
@@ -343,7 +343,7 @@ const struct AFB_plugin *pluginAfbV1Register(const struct AFB_interface *itf)
/* records the interface */
assert (afb_interface == NULL);
afb_interface = itf;
- evmgr = afb_daemon_get_evmgr(itf->daemon);
+ event_sender = afb_daemon_get_event_sender(itf->daemon);
/* creates the jbus for accessing afm-user-daemon */
sbus = afb_daemon_get_user_bus(itf->daemon);
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c
index 35b95cab..78a1eafd 100644
--- a/plugins/samples/HelloWorld.c
+++ b/plugins/samples/HelloWorld.c
@@ -54,7 +54,7 @@ static void pingBug (struct afb_req request)
static void pingEvent(struct afb_req request)
{
json_object *query = afb_req_json(request);
- afb_evmgr_push(afb_daemon_get_evmgr(interface->daemon), "event", query);
+ afb_event_sender_push(afb_daemon_get_event_sender(interface->daemon), "event", query);
ping(request, json_object_get(query), "event");
}