a connection pool wrapper about async pika
Project description
Notice
just support twisted connection now
Usage
sample:
# with connection from pika import URLParameters from pooled_pika import PooledConn AMQP_PARAM = URLParameters('amqp://user:pwd@amqpserver') pooled_conn = PooledConn(AMQP_PARAM) d = pooled_conn.acquire() d.addCallbacks(_on_conn, _on_err_conn) # you will get a TwistedProtocolConnection object d.addErrback(_on_err) d.addBoth(pooled_conn.release) # must release what acquired anyway
or:
# with channel from pika import URLParameters from pooled_pika import PooledConn AMQP_PARAM = URLParameters('amqp://user:pwd@amqpserver') pooled_conn = PooledConn(AMQP_PARAM) d = pooled_conn.acquire(channel=True) d.addCallbacks(_on_channel, _on_err_channel) # you will get a TwistedChannel object d.addErrback(_on_err) d.addBoth(pooled_conn.release) # must release what acquired anyway
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pooled-pika-0.2.1.tar.gz
(3.4 kB
view hashes)