From f64d883ce8ac87cf18eb392ce2e1362505391cc6 Mon Sep 17 00:00:00 2001 From: elijahpetty Date: Wed, 29 Nov 2023 11:52:39 -0600 Subject: [PATCH 1/2] added note --- py/client/docs/source/examples.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py/client/docs/source/examples.rst b/py/client/docs/source/examples.rst index 7f2a22c0670..731024848bb 100644 --- a/py/client/docs/source/examples.rst +++ b/py/client/docs/source/examples.rst @@ -185,6 +185,8 @@ Subscribe to a ticking table The `pydeephaven_ticking` package can be used to subscribe to ticking tables. This is useful for getting asynchronous callbacks when they change. The package maintains a complete local copy of the table and notifies callers when the table changes. +Note that `pydeephaven_ticking` must be built before running this example; find build instructions here + The listener can be specified either as a python function or as an implementation of the TableListener abstract base class. In the case of implementing :py:class:`TableListener ` From 12840ff0ef667018f0ecea0d7f08998694b3752c Mon Sep 17 00:00:00 2001 From: elijahpetty Date: Wed, 29 Nov 2023 12:46:10 -0600 Subject: [PATCH 2/2] update note --- py/client/docs/source/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/client/docs/source/examples.rst b/py/client/docs/source/examples.rst index 731024848bb..6b8b08b0d63 100644 --- a/py/client/docs/source/examples.rst +++ b/py/client/docs/source/examples.rst @@ -185,7 +185,7 @@ Subscribe to a ticking table The `pydeephaven_ticking` package can be used to subscribe to ticking tables. This is useful for getting asynchronous callbacks when they change. The package maintains a complete local copy of the table and notifies callers when the table changes. -Note that `pydeephaven_ticking` must be built before running this example; find build instructions here +Note that `pydeephaven_ticking` must be built before running this example; find build instructions here The listener can be specified either as a python function or as an implementation of the TableListener abstract base class. In the case of implementing