blink_to_append_only
The blink_to_append_only
method creates an append-only table from the supplied blink table.
Syntax
from deephaven.stream import blink_to_append_only
blink_to_append_only(table: Table) -> Table
Parameters
Parameter | Type | Description |
---|---|---|
table | Table | The blink table to convert to an append-only table. |
Returns
An append-only table.
Example
The following example creates a blink table with time_table
and then converts the blink table to an append-only table with blink_to_append_only
.
from deephaven.stream import blink_to_append_only
from deephaven import time_table
tt1 = time_table(period="PT1S", blink_table=True)
append_only_result = blink_to_append_only(tt1)