This docs on this page refers to a PREVIOUS VERSION. For the latest stable release, go to https://docs.bokeh.org/

Archived docs for versions <= 1.0.4 have had to be modified from their original published configuration, and may be missing some features (e.g. source listing)

All users are encourage to update to version 1.1 or later, as soon as they are able.

bokeh.protocol.messages.ack — Bokeh 0.12.14 documentation

Source code for bokeh.protocol.messages.ack

from __future__ import absolute_import

import logging
log = logging.getLogger(__name__)

from ..message import Message
from . import register

@register
[docs]class ack_1(Message): ''' Define the ``ACK`` message (revision 1) for acknowledging successful client connection to a Bokeh server. The ``content`` fragment of for this message is empty. ''' msgtype = 'ACK' revision = 1 @classmethod
[docs] def create(cls, **metadata): ''' Create an ``ACK`` message Any keyword arguments will be put into the message ``metadata`` fragment as-is. ''' header = cls.create_header() content = {} return cls(header, metadata, content)