LivenessScope

LivenessScope is a Python class that manages the reference counting of tables and other query resources that are created within it.

Syntax

Parameters

None.

Returns

An instance of a LivenessScope class.

Examples

The following example uses function generated tables to produce a blink table with 5 new rows per second. Encapsulating the function generated table inside of a liveness scope enables the safe deletion of data once the scope has been released. table_from_func will continue to tick after the scope is released until all referents have been deleted. That includes the ticking table in the UI.