#----------------------------------------------------------------------------- # Copyright (c) 2012 - 2021, Anaconda, Inc., and Bokeh Contributors. # All rights reserved. # # The full license is in the file LICENSE.txt, distributed with this software. #----------------------------------------------------------------------------- ''' Provide events that represent various changes to Bokeh Documents. These events are used internally to signal changes to Documents. For information about user-facing (e.g. UI or tool) events, see the reference for :ref:`bokeh.events`. These events are employed for incoming and outgoing websocket messages and internally for triggering callbacks. For example, the sequence of events that happens when a user calls a Document API or sets a property resulting in a "patch event" to the Document: .. code-block:: user invokes Document API -> Document API triggers event objects -> registered callbacks are executed -> Sesssion callback generates JSON message from event object -> Session sends JSON message over websocket But events may also be triggered from the client, and arrive as JSON messages over the transport layer, which is why the JSON handling and Document API must be separated. Consider the alternative sequence of events: .. code-block:: Session recieves JSON message over websocket -> Document calls event.handle_json -> handle_json invokes appropriate Document API -> Document API triggers event objects -> registered callbacks are executed -> Session callback suppresses outgoing event As a final note, message "ping-pong" is avoided by recording a "setter" when events objects are created. If the session callback notes the event setter is itself, then no further action (e.g. sending an outgoing change event identical to the incoming event it just processed) is taken. ''' #----------------------------------------------------------------------------- # Boilerplate #----------------------------------------------------------------------------- from __future__ import annotations import logging # isort:skip log = logging.getLogger(__name__) #----------------------------------------------------------------------------- # Imports #----------------------------------------------------------------------------- # Standard library imports from typing import ( TYPE_CHECKING, Any, Callable, List, Set, Union, cast, ) ## External imports if TYPE_CHECKING: import pandas as pd else: from ..util.dependencies import import_optional pd = import_optional('pandas') # Bokeh imports from ..util.serialization import make_id from .json import ( ColumnDataChanged, ColumnsPatched, ColumnsStreamed, DocumentPatched, MessageSent, ModelChanged, RootAdded, RootRemoved, TitleChanged, ) if TYPE_CHECKING: from ..core.has_props import Setter from ..core.types import Unknown from ..model import Model from ..models.sources import ColumnarDataSource, DataDict from ..protocol.message import BufferRef from ..server.callbacks import SessionCallback from .document import Document from .json import Patches, ReferenceJson #----------------------------------------------------------------------------- # Globals and constants #----------------------------------------------------------------------------- __all__ = ( 'ColumnDataChangedEvent', 'ColumnsStreamedEvent', 'ColumnsPatchedEvent', 'DocumentChangedEvent', 'DocumentPatchedEvent', 'ModelChangedEvent', 'RootAddedEvent', 'RootRemovedEvent', 'SessionCallbackAdded', 'SessionCallbackRemoved', 'TitleChangedEvent', 'MessageSentEvent', ) #----------------------------------------------------------------------------- # General API #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Dev API #----------------------------------------------------------------------------- if TYPE_CHECKING: Buffers = Union[List[BufferRef], None] Invoker = Callable[..., Any] # TODO class DocumentChangedMixin: def _document_changed(self, event: DocumentChangedEvent) -> None: ... class DocumentPatchedMixin: def _document_patched(self, event: DocumentPatchedEvent) -> None: ... class DocumentMessageSentMixin: def _document_message_sent(self, event: MessageSentEvent) -> None: ... class DocumentModelChangedMixin: def _document_model_changed(self, event: ModelChangedEvent) -> None: ... class ColumnDataChangedMixin: def _column_data_changed(self, event: ColumnDataChangedEvent) -> None: ... class ColumnsStreamedMixin: def _columns_streamed(self, event: ColumnsStreamedEvent) -> None: ... class ColumnsPatchedMixin: def _columns_patched(self, event: ColumnsPatchedEvent) -> None: ... class SessionCallbackAddedMixin: def _session_callback_added(self, event: SessionCallbackAdded) -> None: ... class SessionCallbackRemovedMixin: def _session_callback_removed(self, event: SessionCallbackRemoved) -> None: ... class DocumentChangedEvent: ''' Base class for all internal events representing a change to a Bokeh Document. ''' document: Document setter: Setter | None callback_invoker: Invoker | None def __init__(self, document: Document, setter: Setter | None = None, callback_invoker: Invoker | None = None) -> None: ''' Args: document (Document) : A Bokeh document that is to be updated. setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) In the context of a Bokeh server application, incoming updates to properties will be annotated with the session that is doing the updating. This value is propagated through any subsequent change notifications that the update triggers. The session can compare the event setter to itself, and suppress any updates that originate from itself. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' self.document = document self.setter = setter self.callback_invoker = callback_invoker def combine(self, event: DocumentChangedEvent) -> bool: ''' ''' return False def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._document_changed`` if it exists. ''' if hasattr(receiver, '_document_changed'): cast(DocumentChangedMixin, receiver)._document_changed(self) class DocumentPatchedEvent(DocumentChangedEvent): ''' A Base class for events that represent updating Bokeh Models and their properties. ''' _handlers = {} def __init_subclass__(cls): cls._handlers[cls.kind] = cls._handle_json def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._document_patched`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_document_patched'): cast(DocumentPatchedMixin, receiver)._document_patched(self) def generate(self, references: Set[Model], buffers: Buffers) -> DocumentPatched: ''' Create a JSON representation of this event suitable for sending to clients. *Sub-classes must implement this method.* Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' raise NotImplementedError() @staticmethod def handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: ''' ''' event_kind = event_json['kind'] handler = DocumentPatchedEvent._handlers.get(event_kind, None) if handler is None: raise RuntimeError(f"Unknown patch event {event_json!r}") handler(doc, event_json, references, setter) class MessageSentEvent(DocumentPatchedEvent): ''' ''' kind = "MessageSent" def __init__(self, document: Document, msg_type: str, msg_data: Union[Any, bytes], setter: Setter | None = None, callback_invoker: Invoker | None = None): super().__init__(document, setter, callback_invoker) self.msg_type = msg_type self.msg_data = msg_data def dispatch(self, receiver: Any) -> None: super().dispatch(receiver) if hasattr(receiver, "_document_message_sent"): cast(DocumentMessageSentMixin, receiver)._document_message_sent(self) def generate(self, references: Set[Model], buffers: Buffers) -> MessageSent: msg = MessageSent( kind=self.kind, msg_type=self.msg_type, msg_data=None, ) if not isinstance(self.msg_data, bytes): msg["msg_data"] = self.msg_data else: assert buffers is not None buffer_id = make_id() buf = (dict(id=buffer_id), self.msg_data) buffers.append(buf) return msg @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: message_callbacks = doc.callbacks._message_callbacks.get(event_json["msg_type"], []) for cb in message_callbacks: cb(event_json["msg_data"]) class ModelChangedEvent(DocumentPatchedEvent): ''' A concrete event representing updating an attribute and value of a specific Bokeh Model. This is the "standard" way of updating most Bokeh model attributes. For special casing situations that can optimized (e.g. streaming, etc.), a ``hint`` may be supplied that overrides normal mechanisms. ''' kind = "ModelChanged" def __init__(self, document: Document, model: Model, attr: str, old: Unknown, new: Unknown, serializable_new: Unknown | None, hint: DocumentPatchedEvent | None = None, setter: Setter | None = None, callback_invoker: Invoker | None = None): ''' Args: document (Document) : A Bokeh document that is to be updated. model (Model) : A Model to update attr (str) : The name of the attribute to update on the model. old (object) : The old value of the attribute new (object) : The new value of the attribute serializable_new (object) : A serialized (JSON) version of the new value. It may be ``None`` if a hint is supplied. hint (DocumentPatchedEvent, optional) : When appropriate, a secondary event may be supplied that modifies the normal update process. For example, in order to stream or patch data more efficiently than the standard update mechanism. setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' if setter is None and isinstance(hint, (ColumnsStreamedEvent, ColumnsPatchedEvent)): setter = hint.setter super().__init__(document, setter, callback_invoker) self.model = model self.attr = attr self.old = old self.new = new self.serializable_new = serializable_new self.hint = hint def combine(self, event: DocumentChangedEvent) -> bool: ''' ''' if not isinstance(event, ModelChangedEvent): return False # If these are not true something weird is going on, maybe updates from # Python bokeh.client, don't try to combine if self.setter != event.setter: return False if self.document != event.document: return False if self.hint is not None and event.hint is not None: return self.hint.combine(event.hint) if (self.model == event.model) and (self.attr == event.attr): self.new = event.new self.serializable_new = event.serializable_new self.callback_invoker = event.callback_invoker return True return False def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._document_model_changed`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_document_model_changed'): cast(DocumentModelChangedMixin, receiver)._document_model_changed(self) def generate(self, references: Set[Model], buffers: Buffers) -> ModelChanged: ''' Create a JSON representation of this event suitable for sending to clients. Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' from ..model import collect_models if self.hint is not None: return self.hint.generate(references, buffers) value = self.serializable_new # the new value is an object that may have not-yet-in-the-remote-doc # references, and may also itself not be in the remote doc yet. The # remote may already have some of the references, but unfortunately # we don't have an easy way to know unless we were to check BEFORE the # attr gets changed (we need the old _all_models before setting the # property). So we have to send all the references the remote could # need, even though it could be inefficient. If it turns out we need to # fix this we could probably do it by adding some complexity. value_refs = set(collect_models(value)) # we know we don't want a whole new copy of the obj we're patching # unless it's also the new value if self.model != value: value_refs.discard(self.model) references.update(value_refs) return ModelChanged( kind = self.kind, model = self.model.ref, attr = self.attr, new = value, hint = None, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: patched_id = event_json['model']['id'] if patched_id not in doc.models: if doc.models.seen(patched_id): log.trace(f"Cannot apply patch to {patched_id} which is not in the document anymore. This is usually harmless") return raise RuntimeError(f"Cannot apply patch to {patched_id} which is not in the document") patched_obj = doc.models[patched_id] attr = event_json['attr'] value = event_json['new'] patched_obj.set_from_json(attr, value, models=references, setter=setter) class ColumnDataChangedEvent(DocumentPatchedEvent): ''' A concrete event representing efficiently replacing *all* existing data for a :class:`~bokeh.models.sources.ColumnDataSource` ''' kind = "ColumnDataChanged" def __init__(self, document: Document, column_source: ColumnarDataSource, cols: List[str] | None = None, setter: Setter | None = None, callback_invoker: Invoker | None = None): ''' Args: document (Document) : A Bokeh document that is to be updated. column_source (ColumnDataSource) : cols (list[str]) : optional explicit list of column names to update. If None, all columns will be updated (default: None) setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.column_source = column_source self.cols = cols def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._column_data_changed`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_column_data_changed'): cast(ColumnDataChangedMixin, receiver)._column_data_changed(self) def generate(self, references: Set[Model], buffers: Buffers) -> ColumnDataChanged: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'ColumnDataChanged' 'column_source' : 'new' : 'cols' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' from ..util.serialization import transform_column_source_data data_dict = transform_column_source_data(self.column_source.data, buffers=buffers, cols=self.cols) return ColumnDataChanged( kind = self.kind, column_source = self.column_source.ref, new = data_dict, cols = self.cols, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: source_id = event_json['column_source']['id'] if source_id not in doc.models: raise RuntimeError(f"Cannot apply patch to {source_id} which is not in the document") source = doc.models[source_id] value = event_json['new'] source.set_from_json('data', value, models=references, setter=setter) class ColumnsStreamedEvent(DocumentPatchedEvent): ''' A concrete event representing efficiently streaming new data to a :class:`~bokeh.models.sources.ColumnDataSource` ''' kind = "ColumnsStreamed" data: DataDict def __init__(self, document: Document, column_source: ColumnarDataSource, data: DataDict | pd.DataFrame, rollover: int | None, setter: Setter | None = None, callback_invoker: Invoker | None = None): ''' Args: document (Document) : A Bokeh document that is to be updated. column_source (ColumnDataSource) : The data source to stream new data to. data (dict or DataFrame) : New data to stream. If a DataFrame, will be stored as ``{c: df[c] for c in df.columns}`` rollover (int) : A rollover limit. If the data source columns exceed this limit, earlier values will be discarded to maintain the column length under the limit. setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.column_source = column_source if pd and isinstance(data, pd.DataFrame): data = {c: data[c] for c in data.columns} self.data = data self.rollover = rollover def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._columns_streamed`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_columns_streamed'): cast(ColumnsStreamedMixin, receiver)._columns_streamed(self) def generate(self, references: Set[Model], buffers: Buffers) -> ColumnsStreamed: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'ColumnsStreamed' 'column_source' : 'data' : 'rollover' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' return ColumnsStreamed( kind = self.kind, column_source = self.column_source.ref, data = self.data, rollover = self.rollover, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: source_id = event_json['column_source']['id'] if source_id not in doc.models: raise RuntimeError(f"Cannot stream to {source_id} which is not in the document") source = doc.models[source_id] data = event_json['data'] rollover = event_json.get('rollover', None) source._stream(data, rollover, setter) class ColumnsPatchedEvent(DocumentPatchedEvent): ''' A concrete event representing efficiently applying data patches to a :class:`~bokeh.models.sources.ColumnDataSource` ''' kind = "ColumnsPatched" def __init__(self, document: Document, column_source: ColumnarDataSource, patches: Patches, setter: Setter | None = None, callback_invoker: Invoker | None = None): ''' Args: document (Document) : A Bokeh document that is to be updated. column_source (ColumnDataSource) : The data source to apply patches to. patches (list) : setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.column_source = column_source self.patches = patches def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._columns_patched`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_columns_patched'): cast(ColumnsPatchedMixin, receiver)._columns_patched(self) def generate(self, references: Set[Model], buffers: Buffers) -> ColumnsPatched: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'ColumnsPatched' 'column_source' : 'patches' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' return ColumnsPatched( kind = self.kind, column_source = self.column_source.ref, patches = self.patches, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: source_id = event_json['column_source']['id'] if source_id not in doc.models: raise RuntimeError(f"Cannot apply patch to {source_id} which is not in the document") source = doc.models[source_id] patches = event_json['patches'] source.patch(patches, setter) class TitleChangedEvent(DocumentPatchedEvent): ''' A concrete event representing a change to the title of a Bokeh Document. ''' kind = "TitleChanged" def __init__(self, document: Document, title: str, setter: Setter | None = None, callback_invoker: Invoker | None = None): ''' Args: document (Document) : A Bokeh document that is to be updated. title (str) : The new title to set on the Document setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.title = title def combine(self, event: DocumentChangedEvent) -> bool: ''' ''' if not isinstance(event, TitleChangedEvent): return False # If these are not true something weird is going on, maybe updates from # Python bokeh.client, don't try to combine if self.setter != event.setter: return False if self.document != event.document: return False self.title = event.title self.callback_invoker = event.callback_invoker return True def generate(self, references: Set[Model], buffers: Buffers) -> TitleChanged: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'TitleChanged' 'title' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' return TitleChanged( kind = self.kind, title = self.title, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: doc.set_title(event_json['title'], setter) class RootAddedEvent(DocumentPatchedEvent): ''' A concrete event representing a change to add a new Model to a Document's collection of "root" models. ''' kind = "RootAdded" def __init__(self, document: Document, model: Model, setter: Setter | None = None, callback_invoker: Invoker | None = None) -> None: ''' Args: document (Document) : A Bokeh document that is to be updated. model (Model) : The Bokeh Model to add as a Document root. setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.model = model def generate(self, references: Set[Model], buffers: Buffers) -> RootAdded: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'RootAdded' 'title' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' references.update(self.model.references()) return RootAdded( kind = self.kind, model = self.model.ref, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: root_id = event_json['model']['id'] root_obj = references[root_id] doc.add_root(root_obj, setter) class RootRemovedEvent(DocumentPatchedEvent): ''' A concrete event representing a change to remove an existing Model from a Document's collection of "root" models. ''' kind = "RootRemoved" def __init__(self, document: Document, model: Model, setter: Setter | None = None, callback_invoker: Invoker | None = None) -> None: ''' Args: document (Document) : A Bokeh document that is to be updated. model (Model) : The Bokeh Model to remove as a Document root. setter (ClientSession or ServerSession or None, optional) : This is used to prevent "boomerang" updates to Bokeh apps. (default: None) See :class:`~bokeh.document.events.DocumentChangedEvent` for more details. callback_invoker (callable, optional) : A callable that will invoke any Model callbacks that should be executed in response to the change that triggered this event. (default: None) ''' super().__init__(document, setter, callback_invoker) self.model = model def generate(self, references: Set[Model], buffers: Buffers) -> RootRemoved: ''' Create a JSON representation of this event suitable for sending to clients. .. code-block:: python { 'kind' : 'RootRemoved' 'title' : } Args: references (dict[str, Model]) : If the event requires references to certain models in order to function, they may be collected here. **This is an "out" parameter**. The values it contains will be modified in-place. buffers (set) : If the event needs to supply any additional Bokeh protocol buffers, they may be added to this set. **This is an "out" parameter**. The values it contains will be modified in-place. ''' return RootRemoved( kind = self.kind, model = self.model.ref, ) @staticmethod def _handle_json(doc: Document, event_json: DocumentPatched, references: List[ReferenceJson], setter: Setter) -> None: root_id = event_json['model']['id'] root_obj = references[root_id] doc.remove_root(root_obj, setter) class SessionCallbackAdded(DocumentChangedEvent): ''' A concrete event representing a change to add a new callback (e.g. periodic, timeout, or "next tick") to a Document. ''' def __init__(self, document: Document, callback: SessionCallback) -> None: ''' Args: document (Document) : A Bokeh document that is to be updated. callback (SessionCallback) : The callback to add ''' super().__init__(document) self.callback = callback def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._session_callback_added`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_session_callback_added'): cast(SessionCallbackAddedMixin, receiver)._session_callback_added(self) class SessionCallbackRemoved(DocumentChangedEvent): ''' A concrete event representing a change to remove an existing callback (e.g. periodic, timeout, or "next tick") from a Document. ''' def __init__(self, document: Document, callback: SessionCallback) -> None: ''' Args: document (Document) : A Bokeh document that is to be updated. callback (SessionCallback) : The callback to remove ''' super().__init__(document) self.callback = callback def dispatch(self, receiver: Any) -> None: ''' Dispatch handling of this event to a receiver. This method will invoke ``receiver._session_callback_removed`` if it exists. ''' super().dispatch(receiver) if hasattr(receiver, '_session_callback_removed'): cast(SessionCallbackRemovedMixin, receiver)._session_callback_removed(self) DocumentChangeCallback = Callable[[DocumentChangedEvent], None] #----------------------------------------------------------------------------- # Private API #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Code #-----------------------------------------------------------------------------