Skip to content

Instantly share code, notes, and snippets.

@dsociative
Last active December 13, 2015 22:39
Show Gist options
  • Save dsociative/4985722 to your computer and use it in GitHub Desktop.
Save dsociative/4985722 to your computer and use it in GitHub Desktop.
# coding: utf8
import time
import zmq
context = zmq.Context()
socket = context.socket(zmq.PUSH)
socket.bind("ipc://jewels_1")
socket.bind("ipc://jewels_2")
socket.bind("ipc://jewels_3")
socket.bind("ipc://jewels_4")
count = 0
while 1:
count += 1
print socket.send('client %s' % count)
time.sleep(0.5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment