ail-framework/bin/ZMQ_Sub_Duplicate_Q.py

17 lines
367 B
Python
Raw Normal View History

#!/usr/bin/env python2
# -*-coding:UTF-8 -*
from pubsublogger import publisher
2014-08-18 16:35:08 +00:00
import Helper
2014-08-18 16:35:08 +00:00
if __name__ == "__main__":
publisher.channel = 'Queuing'
2014-08-14 15:55:18 +00:00
2014-08-18 16:35:08 +00:00
config_section = 'PubSub_Global'
config_channel = 'channel'
subscriber_name = 'duplicate'
2014-08-18 16:35:08 +00:00
h = Helper.Queues()
h.queue_subscribe(publisher, config_section, config_channel, subscriber_name)