Class: SQLite3::FFI::AggregatorWrapper

Inherits:
Object
  • Object
show all
Defined in:
lib/sqlite3/ffi/aggregator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(handler_klass) ⇒ AggregatorWrapper

Returns a new instance of AggregatorWrapper.



6
7
8
9
# File 'lib/sqlite3/ffi/aggregator.rb', line 6

def initialize(handler_klass)
  @handler_klass = handler_klass
  @instances = []
end

Instance Attribute Details

#handler_klassObject (readonly)

Returns the value of attribute handler_klass.



4
5
6
# File 'lib/sqlite3/ffi/aggregator.rb', line 4

def handler_klass
  @handler_klass
end

#instancesObject (readonly)

Returns the value of attribute instances.



4
5
6
# File 'lib/sqlite3/ffi/aggregator.rb', line 4

def instances
  @instances
end