summaryrefslogtreecommitdiff
path: root/src/i_engine.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-03-20 10:58:59 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-03-20 10:58:59 +0100
commitdfdaff5eba1e6980adb3326c119d2070d0ad42bb (patch)
tree31c110b8dc40f1f21fa5c2121c1e13d00a70884a /src/i_engine.hpp
parentcbaf10978a8ffa98d98161aeec8d020c517b127b (diff)
XREP-style prefixing/trimming messages removed
Diffstat (limited to 'src/i_engine.hpp')
-rw-r--r--src/i_engine.hpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/i_engine.hpp b/src/i_engine.hpp
index bb5f391..ea6b850 100644
--- a/src/i_engine.hpp
+++ b/src/i_engine.hpp
@@ -22,8 +22,6 @@
#include <stddef.h>
-#include "blob.hpp"
-
namespace zmq
{
@@ -41,13 +39,9 @@ namespace zmq
// are messages to send available.
virtual void revive () = 0;
+ // This method is called by the session to signalise that more
+ // messages can be written to the pipe.
virtual void resume_input () = 0;
-
- // Engine should add the prefix supplied to all inbound messages.
- virtual void add_prefix (const blob_t &identity_) = 0;
-
- // Engine should trim prefix from all the outbound messages.
- virtual void trim_prefix () = 0;
};
}