# https://docs.bokeh.org/en/latest/docs/user_guide/server/app.html#ug-server-apps-hooks
[docs]
def on_server_loaded(server_context):
# If present, this function executes when the server starts.
pass
[docs]
def on_server_unloaded(server_context):
# If present, this function executes when the server shuts down.
pass
[docs]
def on_session_created(session_context):
# If present, this function executes when the server creates a session.
pass
[docs]
def on_session_destroyed(session_context):
# If present, this function executes when the server closes a session.
pass