Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > cbaaa694ac195a635f20821a2cb287c2 > files > 106

python-zmq-2.1.4-1.fc13.i686.rpm

#!/usr/bin/env python
"""Adapted echo.py to put the send in the event loop using a ZMQStream.

Authors
-------
* MinRK
"""

import zmq
from zmq.eventloop import ioloop, zmqstream
loop = ioloop.IOLoop.instance()

ctx = zmq.Context()
s = ctx.socket(zmq.REP)
s.bind('tcp://127.0.0.1:5555')
stream = zmqstream.ZMQStream(s, loop)

def echo(msg):
    print " ".join(msg)
    stream.send_multipart(msg)

stream.on_recv(echo)

loop.start()