def call(conf, context, topic, msg, timeout=None): """Sends a message on a topic and wait for a response.""" return rpc_amqp.call(conf, context, topic, msg, timeout, rpc_amqp.get_connection_pool(conf, Connection))
def call(context, topic, msg, timeout=None): """Sends a message on a topic and wait for a response.""" return rpc_amqp.call(context, topic, msg, timeout)
def call(context, topic, msg, timeout=None): """Sends a message on a topic and wait for a response.""" return rpc_amqp.call(context, topic, msg, timeout, Connection.pool)
def call(context, topic, msg): """Sends a message on a topic and wait for a response.""" return rpc_amqp.call(context, topic, msg)