Module: BulkOperations
- Defined in:
- lib/bulk_operations.rb,
lib/bulk_operations/proxy.rb,
lib/bulk_operations/version.rb,
lib/bulk_operations/ordered_bulk.rb,
lib/bulk_operations/struct_result.rb,
lib/bulk_operations/unordered_bulk.rb
Defined Under Namespace
Classes: BulkProxy, OperationStackEmptyError, OrderedBulkProxy, StructResult, UnorderedBulkProxy
Constant Summary
collapse
- VERSION =
"0.1.0"
Class Method Summary
collapse
Class Method Details
.ordered_bulk(object) ⇒ Object
13
14
15
|
# File 'lib/bulk_operations.rb', line 13
def self.ordered_bulk(object)
OrderedBulkProxy.new(object)
end
|
.unordered_bulk(object) ⇒ Object
9
10
11
|
# File 'lib/bulk_operations.rb', line 9
def self.unordered_bulk(object)
UnorderedBulkProxy.new(object)
end
|