Class: Google::Cloud::Bigtable::Row

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/bigtable/row.rb

Overview

Row

Row structure based on merged cells using read row state.

Defined Under Namespace

Classes: Cell

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key = nil) ⇒ Row

Creates a flat row object.

Parameters:

  • key (String) (defaults to: nil)

    Row key name.



105
106
107
108
# File 'lib/google/cloud/bigtable/row.rb', line 105

def initialize key = nil
  @key = key
  @cells = Hash.new { |h, k| h[k] = [] }
end

Instance Attribute Details

#cellsHash{String => Array<Google::Cloud::Bigtable::Row::Cell>}

Returns Row cells.

Returns:



98
99
100
# File 'lib/google/cloud/bigtable/row.rb', line 98

def cells
  @cells
end

#keyString

Returns Row key.

Returns:

  • (String)

    Row key.



93
94
95
# File 'lib/google/cloud/bigtable/row.rb', line 93

def key
  @key
end

Instance Method Details

#column_familiesArray<String>

List of column families names.

Returns:

  • (Array<String>)


115
116
117
# File 'lib/google/cloud/bigtable/row.rb', line 115

def column_families
  @cells.keys
end