Class: Aerospike::BatchResults
- Inherits:
-
Object
- Object
- Aerospike::BatchResults
- Defined in:
- lib/aerospike/batch_results.rb
Overview
Batch record results.
Instance Attribute Summary collapse
-
#records ⇒ Object
Record results.
-
#status ⇒ Object
Indicates if all records returned success.
Instance Method Summary collapse
-
#intialize(records, status) ⇒ Object
Constructor.
Instance Attribute Details
#records ⇒ Object
Record results.
26 27 28 |
# File 'lib/aerospike/batch_results.rb', line 26 def records @records end |
#status ⇒ Object
Indicates if all records returned success.
29 30 31 |
# File 'lib/aerospike/batch_results.rb', line 29 def status @status end |
Instance Method Details
#intialize(records, status) ⇒ Object
Constructor.
32 33 34 35 |
# File 'lib/aerospike/batch_results.rb', line 32 def intialize(records, status) @records = records @status = status end |