Class: SQLite3::FFI::AggregatorWrapper
- Inherits:
-
Object
- Object
- SQLite3::FFI::AggregatorWrapper
- Defined in:
- lib/sqlite3/ffi/aggregator.rb
Instance Attribute Summary collapse
-
#handler_klass ⇒ Object
readonly
Returns the value of attribute handler_klass.
-
#instances ⇒ Object
readonly
Returns the value of attribute instances.
Instance Method Summary collapse
-
#initialize(handler_klass) ⇒ AggregatorWrapper
constructor
A new instance of AggregatorWrapper.
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_klass ⇒ Object (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 |
#instances ⇒ Object (readonly)
Returns the value of attribute instances.
4 5 6 |
# File 'lib/sqlite3/ffi/aggregator.rb', line 4 def instances @instances end |