Skip to main content
Version: Java (Groovy)

snapshot

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

Syntax

result = source.snapshot()

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.

source = timeTable("PT00:00:01")

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

img