Example #1
0
    def callback(ch, method, properties, body):
        """
        :param method: ['consumer_tag=ctag1.fe37cc6edbbf4c4595445bddb8b8a1e0', 'delivery_tag=1', 'exchange=forward',
        'redelivered=False', 'routing_key=forward.jack.info']
        :param properties: pika.spec.BasicProperties
        print properties.content_type
        print properties.content_encoding
        print properties.headers
        print properties.delivery_mode
        print properties.priority
        print properties.correlation_id
        print properties.reply_to
        print properties.expiration
        print properties.message_id
        print properties.timestamp
        print properties.type
        print properties.user_id
        print properties.app_id
        print properties.cluster_id
        """
        MQ_LOG.debug("call back routing_key:%s,body:%s", method.routing_key,
                     body)

        p = getProcessor(method.routing_key, body)
        if p:
            p.callback()

        ch.basic_ack(delivery_tag=method.delivery_tag)
Example #2
0
    def callback(ch, method, properties, body):
        """
        :param method: ['consumer_tag=ctag1.fe37cc6edbbf4c4595445bddb8b8a1e0', 'delivery_tag=1', 'exchange=forward',
        'redelivered=False', 'routing_key=forward.jack.info']
        :param properties: pika.spec.BasicProperties
        print properties.content_type
        print properties.content_encoding
        print properties.headers
        print properties.delivery_mode
        print properties.priority
        print properties.correlation_id
        print properties.reply_to
        print properties.expiration
        print properties.message_id
        print properties.timestamp
        print properties.type
        print properties.user_id
        print properties.app_id
        print properties.cluster_id
        """
        MQ_LOG.debug("call back routing_key:%s,body:%s",method.routing_key, body)

        p = getProcessor(method.routing_key, body)
        if p:
            p.callback()

        ch.basic_ack(delivery_tag=method.delivery_tag)
Example #3
0
    def callback(ch, method, properties, body):
        MQ_LOG.debug("call back routing_key:%s,body:%s",method.routing_key, body)

        p = getProcessor(method.routing_key, body)
        if p:
            p.callback()

        ch.basic_ack(delivery_tag=method.delivery_tag)
Example #4
0
File: mq.py Project: fanux/forward
    def callback(ch, method, properties, body):
        MQ_LOG.debug("call back routing_key:%s,body:%s", method.routing_key,
                     body)

        p = getProcessor(method.routing_key, body)
        if p:
            p.callback()

        ch.basic_ack(delivery_tag=method.delivery_tag)