コード例 #1
0
def cast(context, topic, msg):
    """Sends a message on a topic without waiting for a response."""
    return rpc_amqp.cast(context, topic, msg, Connection.pool)
コード例 #2
0
ファイル: impl_kombu.py プロジェクト: pulchart/nova
def cast(conf, context, topic, msg):
    """Sends a message on a topic without waiting for a response."""
    return rpc_amqp.cast(conf, context, topic, msg,
            rpc_amqp.get_connection_pool(conf, Connection))
コード例 #3
0
ファイル: impl_qpid.py プロジェクト: acomisario/nova
def cast(context, topic, msg):
    """Sends a message on a topic without waiting for a response."""
    return rpc_amqp.cast(context, topic, msg)