def __init__(self, routingKey, process_idle):
     RabbitMQClass.__init__(self)
     ClassCB.__init__(self)
     self.queueId = routingKey
     self.routingKey = routingKey
     self.conn = None
     self.channel = None
     self.process_idle = process_idle
 def __init__(self, csGroup, routingKey, process_idle):
     RabbitMQClass.__init__(self)
     StateCB.__init__(self)  #self.CallBack
     self.queueId = routingKey
     self.routingKey = csGroup
     self.conn = None
     self.channel = None
     self.process_idle = process_idle
 def __init__(self, host='', port=5871):
     RabbitMQClass.__init__(self)
     self.host = host
     self.port = port
     self.context = zmq.Context(20)
     self.socket = self.context.socket(zmq.REP)
 def __init__(self):
     multiprocessing.Process.__init__(self)
     #RedisInfo.__init__(self)
     RabbitMQClass.__init__(self)
 def __init__(self, host="", port=5871):
     RabbitMQClass.__init__(self)
     self.host = host
     self.port = port
     self.context = zmq.Context(20)
     self.socket = self.context.socket(zmq.REP)
 def __init__(self):
     multiprocessing.Process.__init__(self)
     # RedisInfo.__init__(self)
     RabbitMQClass.__init__(self)