16 lines
216 B
Python
16 lines
216 B
Python
|
from appPublic.zmq_reqrep import ZmqReplier
|
||
|
import time
|
||
|
|
||
|
def handler(b):
|
||
|
print(b.decode('utf-8'))
|
||
|
return 'got it'
|
||
|
|
||
|
x = ZmqReplier('tcp://127.0.0.1:5555', handler)
|
||
|
x.run()
|
||
|
f = 0
|
||
|
while 1:
|
||
|
time.sleep(0.1)
|
||
|
|
||
|
x.stop()
|
||
|
|