Example #1
0
def _task_broker_factory(dispatch_func = None):
    connection = Connection(vhost = "/",
                            host = "localhost",
                            port = 5672,
                            username = "******",
                            password = "******")
    connection.connect()
    task_broker = TaskBroker(connection, _get_properties())
    if dispatch_func:
        task_broker._dispatch = dispatch_func
    task_broker._init_connection()
    return task_broker
Example #2
0
def _task_broker_factory(dispatch_func=None):
    connection = Connection(vhost="/",
                            host="localhost",
                            port=5672,
                            username="******",
                            password="******")
    connection.connect()
    task_broker = TaskBroker(connection, _get_properties())
    if dispatch_func:
        task_broker._dispatch = dispatch_func
    task_broker._init_connection()
    return task_broker