Parent: [e1b8d5] (diff)

Child: [392a01] (diff)

Download this file

async.py    32 lines (23 with data), 762 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import logging
from Queue import Queue
import kombu
log = logging.getLogger(__name__)
class Connection(object):
def __init__(self, hostname, port, userid, password, vhost):
self._conn_proto = kombu.BrokerConnection(
hostname=hostname,
port=port,
userid=userid,
password=password,
virtual_host=vhost)
self._connection_pool = self._conn_proto.Pool(preload=1, limit=None)
self.reset()
def reset(self):
self._conn = self._connection_pool.acquire()
self.queue = self._conn.SimpleQueue('task')
class MockAMQ(object):
def __init__(self, globals):
self.globals = globals
self.reset()
def reset(self):
self.queue = Queue()