summaryrefslogtreecommitdiffstats
path: root/src/engine/events/RequestPlugins.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-03 20:39:18 +0000
committerDavid Robillard <d@drobilla.net>2010-02-03 20:39:18 +0000
commitaef3c9348218029a077f40081fd078a9e2ee85ca (patch)
treeb77d6ef50f66004129a03cb0751b653336c50f14 /src/engine/events/RequestPlugins.cpp
parent3e495d47f06cca50521076e8f77a966dfec521ab (diff)
downloadingen-aef3c9348218029a077f40081fd078a9e2ee85ca.tar.gz
ingen-aef3c9348218029a077f40081fd078a9e2ee85ca.tar.bz2
ingen-aef3c9348218029a077f40081fd078a9e2ee85ca.zip
Responder => Request, and handle EventSource unblocking from Request (simplify Event interfaces).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2417 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/RequestPlugins.cpp')
-rw-r--r--src/engine/events/RequestPlugins.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/engine/events/RequestPlugins.cpp b/src/engine/events/RequestPlugins.cpp
index 95fd5ddf..89507a23 100644
--- a/src/engine/events/RequestPlugins.cpp
+++ b/src/engine/events/RequestPlugins.cpp
@@ -16,7 +16,7 @@
*/
#include "RequestPlugins.hpp"
-#include "Responder.hpp"
+#include "Request.hpp"
#include "Engine.hpp"
#include "ClientBroadcaster.hpp"
#include "NodeFactory.hpp"
@@ -25,8 +25,8 @@ namespace Ingen {
namespace Events {
-RequestPlugins::RequestPlugins(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp)
-: QueuedEvent(engine, responder, timestamp)
+RequestPlugins::RequestPlugins(Engine& engine, SharedPtr<Request> request, SampleCount timestamp)
+ : QueuedEvent(engine, request, timestamp)
{
}
@@ -45,11 +45,11 @@ RequestPlugins::pre_process()
void
RequestPlugins::post_process()
{
- if (_responder->client()) {
- _engine.broadcaster()->send_plugins_to(_responder->client(), _plugins);
- _responder->respond_ok();
+ if (_request->client()) {
+ _engine.broadcaster()->send_plugins_to(_request->client(), _plugins);
+ _request->respond_ok();
} else {
- _responder->respond_error("Unable to find client to send plugins");
+ _request->respond_error("Unable to find client to send plugins");
}
}