summaryrefslogtreecommitdiff
path: root/src/session_base.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-03-20 17:37:04 +0100
committerMartin Sustrik <sustrik@250bpm.com>2012-03-20 17:37:04 +0100
commit0c99d04db9240f29493a4d774be677dc682547ca (patch)
treee3be78125bb01271dd7f172eaf6cfcc5f2afc08f /src/session_base.hpp
parent818d122d78e4b3bc55fdc376b43e15841b2e2006 (diff)
Make REQ session state machine aware of reconnections
On reconnections, state machine in req_session_t is reset to the initial state. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/session_base.hpp')
-rw-r--r--src/session_base.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/session_base.hpp b/src/session_base.hpp
index 47da8c2..b22aee1 100644
--- a/src/session_base.hpp
+++ b/src/session_base.hpp
@@ -54,10 +54,12 @@ namespace xs
void attach_pipe (xs::pipe_t *pipe_);
// Following functions are the interface exposed towards the engine.
+ // They can be overloaded by specific session types to intercept
+ // events coming from the engine.
virtual int read (msg_t *msg_);
virtual int write (msg_t *msg_);
- void flush ();
- void detach ();
+ virtual void flush ();
+ virtual void detach ();
// i_pipe_events interface implementation.
void read_activated (xs::pipe_t *pipe_);