summaryrefslogtreecommitdiff
path: root/src/downstream.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-12-15 09:09:19 +0100
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-12-15 09:09:19 +0100
commite49115224a7957b0e5d49326bc02ae6af186eaf9 (patch)
tree81d1ca0ea496004bbc85cec9b3289af96cdaa197 /src/downstream.hpp
parentbd792faa9d6c78c375dbc52c6d773e157335da36 (diff)
zmq_encoder/decoder are able to add/trim prefixes from messages; fair queueing and load balancing algorithms factorised into separate classes
Diffstat (limited to 'src/downstream.hpp')
-rw-r--r--src/downstream.hpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/downstream.hpp b/src/downstream.hpp
index c6a7ed8..bf8cabb 100644
--- a/src/downstream.hpp
+++ b/src/downstream.hpp
@@ -21,7 +21,7 @@
#define __ZMQ_DOWNSTREAM_HPP_INCLUDED__
#include "socket_base.hpp"
-#include "yarray.hpp"
+#include "lb.hpp"
namespace zmq
{
@@ -48,12 +48,8 @@ namespace zmq
private:
- // List of outbound pipes.
- typedef yarray_t <class writer_t> pipes_t;
- pipes_t pipes;
-
- // Points to the last pipe that the most recent message was sent to.
- pipes_t::size_type current;
+ // Load balancer managing the outbound pipes.
+ lb_t lb;
downstream_t (const downstream_t&);
void operator = (const downstream_t&);