Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
"""
|
|
2 |
Defines callbacks to be executed on a thread or by scheduling it
|
|
3 |
on a running bokeh server.
|
|
4 |
"""
|
|
5 |
import param |
|
6 |
|
|
7 |
from .io.callbacks import PeriodicCallback # noqa |
|
8 |
|
|
9 |
param.main.param.warning( |
|
10 |
"panel.callbacks module is deprecated and has been moved to "
|
|
11 |
"panel.io.callbacks. Update your import as it will be removed "
|
|
12 |
"in the next minor release."
|
|
13 |
)
|
Read our documentation on viewing source code .