bokeh.server.callbacks¶
Provide classes to represent callback code that can be associate with Bokeh Documents and Sessions.
-
class
NextTickCallback
(document, callback, id=None)[source]¶ Represent a callback to execute on the next
IOLoop
“tick”.
-
class
PeriodicCallback
(document, callback, period, id=None)[source]¶ Represent a callback to execute periodically on the
IOLoop
at a specified periodic time interval.-
property
period
¶ The period time (in milliseconds) that this callback should repeat execution at.
-
property
-
class
SessionCallback
(document, callback, id=None)[source]¶ A base class for callback objects associated with Bokeh Documents and Sessions.
-
property
callback
¶ The callable that this callback wraps.
-
property
id
¶ A unique ID for this callback
-
property