kombu.transport.pypika

Pika transport.

copyright:
  1. 2009 - 2011 by Ask Solem.
license:

BSD, see LICENSE for more details.

Transports

class kombu.transport.pypika.AsyncoreTransport(client, **kwargs)
Connection

alias of AsyncoreConnection

class kombu.transport.pypika.SyncTransport(client, **kwargs)
Connection

alias of BlockingConnection

class Message(channel, amqp_message, **kwargs)
SyncTransport.close_connection(connection)

Close the AMQP broker connection.

SyncTransport.create_channel(connection)
SyncTransport.default_connection_params
SyncTransport.drain_events(connection, **kwargs)
SyncTransport.establish_connection()

Establish connection to the AMQP broker.

Connections

class kombu.transport.pypika.AsyncoreConnection(client, *args, **kwargs)
Super

alias of AsyncoreConnection

channel()
close()
ensure_drain_events(timeout=None)
on_data_available(buf)
class kombu.transport.pypika.BlockingConnection(client, *args, **kwargs)
Super

alias of BlockingConnection

channel()
close()
ensure_drain_events(timeout=None)

Channel

class kombu.transport.pypika.Channel(handler)
class Message(channel, amqp_message, **kwargs)
Channel.basic_ack(delivery_tag)
Channel.basic_consume(queue, no_ack=False, consumer_tag=None, callback=None, nowait=False)
Channel.basic_get(queue, no_ack)
Channel.basic_publish(message, exchange, routing_key, mandatory=False, immediate=False)
Channel.channel_id
Channel.close()
Channel.message_to_python(raw_message)
Channel.prepare_message(message_data, priority=None, content_type=None, content_encoding=None, headers=None, properties=None)
Channel.queue_purge(queue=None, nowait=False)

Message

class kombu.transport.pypika.Message(channel, amqp_message, **kwargs)

Table Of Contents

Previous topic

<no title>

Next topic

kombu.transport.memory

This Page