コード例 #1
0
def broadcast_message(internal_url, data):
    """
    Broadcast the message to anyone listening. We are rate limiting the tweets
    because otherwise it's nearly impossible to read.

    :param internal_url: Full internal websocket URL
    :type internal_url: str
    :param data: Final data to be sent to the websocket server
    :type data: JSON
    :return: None
    """
    # Fix circular import issues.
    from catwatch.blueprints.stream.broadcast import Broadcast

    Broadcast.send_to_websocket_server(internal_url, data)
コード例 #2
0
def broadcast_message(internal_url, data):
    """
    Broadcast the message to anyone listening. We are rate limiting the tweets
    because otherwise it's nearly impossible to read.

    :param internal_url: Full internal websocket URL
    :type internal_url: str
    :param data: Final data to be sent to the websocket server
    :type data: JSON
    :return: None
    """
    # Fix circular import issues.
    from catwatch.blueprints.stream.broadcast import Broadcast

    Broadcast.send_to_websocket_server(internal_url, data)