Skip to main content
Version: Java (Groovy)

toBlink

The Deephaven toBlink method converts an add-only or append-only table to a blink table.

Syntax

AddOnlyToBlinkTableAdapter.toBlink(table)

Parameters

ParameterTypeDescription
table>Table

The add-only or append-only table to convert.

Returns

A blink table.

Examples

import io.deephaven.engine.table.impl.AddOnlyToBlinkTableAdapter

// create source table
source = timeTable("PT1S")

// check `source` table's attributes
println source.getAttributes()

// convert `source` table to a blink table
result = AddOnlyToBlinkTableAdapter.toBlink(source)

// confirm `result` is now a blink table
println result.getAttributes()