Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1759835
  • 博文数量: 290
  • 博客积分: 10653
  • 博客等级: 上将
  • 技术积分: 3178
  • 用 户 组: 普通用户
  • 注册时间: 2007-10-24 23:08
文章存档

2013年(6)

2012年(15)

2011年(25)

2010年(86)

2009年(52)

2008年(66)

2007年(40)

分类: 系统运维

2011-06-26 06:43:08

应用:进程内通信

 

 

 

测试代码

 

class MyPush:

    def __init__(self, content, addr):

        self._sock content.socket(zmq.PUSH)

        self._sock.bind(addr)

    

    def push(self, datas):

        assert isinstance(datas, list)

        for data in datas:

            self._sock.send(data)

        print 'push done'

    

class MyPull:

    def __init__(self, content, addr, num):

        assert num and num 256

        self._socks {}

        self._poller zmq.Poller()

        for in range(num):

            sock content.socket(zmq.PULL)

            sock.connect(addr)

            self._poller.register(sock, zmq.POLLIN)

            self._socks[sock] i

        

    def close(self):

        for sock in self._socks.keys():

            self._poller.unregister(sock)

            sock.close()

    

    def pull(self):

        flag False

        socks dict(self._poller.poll(1)) 如果不设超时,阻塞

        for sock in socks.keys():

            if socks[sock] == zmq.POLLIN:

                print self._socks[sock], ', sock.recv()

                flag True

        

        if flag: self.pull() or None

    

ctx zmq.Context()

ps MyPush(ctx, 'inproc://xxx.xx')

pl MyPull(ctx, 'inproc://xxx.xx', 5)

 

datas []

for idx in range(12):

    datas.append('msg' str(idx))

ps.push(datas)

pl.pull()

pl.close()

 

 

 

 

Pipeline pattern

摘录自:

The pipeline pattern is used for distributing data to nodes arranged in pipeline. Data always flows down the pipeline, and each stage of the pipeline is connected to at least one nodeWhen pipeline stage is connected to multiple nodes data is load-balanced among all connected nodes.

 

 

socket of type ZMQ_PUSH is used by pipeline node to send messages to downstream pipeline nodes. Messages are load-balanced to all connected downstream nodes. The zmq_recv() function is not implemented for this socket type.

 

 

socket of type ZMQ_PULL is used by pipeline node to receive messages from upstream pipeline nodes. Messages are fair-queued from among all connected upstream nodes. The zmq_send() function is not implemented for this socket type.

 

阅读(5728) | 评论(0) | 转发(0) |
0

上一篇:QT layout 使用总结

下一篇:RTMP 协议研究

给主人留下些什么吧!~~