Skip to main content
Version: Python

snapshot

snapshot produces an static, in-memory copy of a source table.

Syntax

result = source.snapshot() -> Table

Returns

A static copy of a source table.

Examples

In the following example, the source table updates every second with new data. After some time, a snapshot is taken.

from deephaven import time_table

source = time_table("PT1S")

# Some time later...
result = source.snapshot()

img