Class: Row

Row

(protected) new Row(table, rowId)

Represents a data row for a unique instance of table data.
Parameters:
Name Type Description
table Table The parent table for this row.
rowId string Unique identifier for this row.
Source:

Members

keyValues

Properties:
Name Type Description
keyValues Array.<string> Invariant values (constitute the primary key) for this row.
Source:

rowId

Properties:
Name Type Description
rowId string Unique identifier for this row.
Source:

samples

Properties:
Name Type Description
samples Array.<Sample> Collection of data samples for this row.
Source:

table

Properties:
Name Type Description
table Table The parent table containing this row.
Source:

Methods

toString()

Source:

Events

Row:expire

Fired when a sample is removed from the row by expiration policy.
Type:
  • object
Properties:
Name Type Description
row Row The Row previously containing the Sample
sample Sample The expired Sample
Source:

Row:sample

Fired when a sample is added to the row
Type:
  • object
Properties:
Name Type Description
row Row The Row containing the new sample
sample Sample The newly added Sample
Source: