Class: Aliyun::Odps::List
- Inherits:
-
Object
- Object
- Aliyun::Odps::List
- Extended by:
- Forwardable
- Includes:
- Enumerable
- Defined in:
- lib/aliyun/odps/list.rb
Overview
Wrap for simple array and give marker and max_items methods
Instance Attribute Summary collapse
-
#marker ⇒ Object
readonly
Returns the value of attribute marker.
-
#max_items ⇒ Object
readonly
Returns the value of attribute max_items.
Class Method Summary collapse
-
.build(result, keys, &_block) ⇒ List
Auto detect marker, max_items, values from result, build a object, where you can access marker, max_items, and values.
Instance Method Summary collapse
-
#initialize(marker, max_items, objects) ⇒ List
constructor
A new instance of List.
Constructor Details
permalink #initialize(marker, max_items, objects) ⇒ List
Returns a new instance of List.
13 14 15 16 17 |
# File 'lib/aliyun/odps/list.rb', line 13 def initialize(marker, max_items, objects) @marker = marker @max_items = max_items.to_i @objects = objects end |
Instance Attribute Details
permalink #marker ⇒ Object (readonly)
Returns the value of attribute marker.
10 11 12 |
# File 'lib/aliyun/odps/list.rb', line 10 def marker @marker end |
permalink #max_items ⇒ Object (readonly)
Returns the value of attribute max_items.
10 11 12 |
# File 'lib/aliyun/odps/list.rb', line 10 def max_items @max_items end |
Class Method Details
permalink .build(result, keys, &_block) ⇒ List
Auto detect marker, max_items, values from result, build a object, where you can access marker, max_items, and values
29 30 31 32 33 34 35 36 37 |
# File 'lib/aliyun/odps/list.rb', line 29 def self.build(result, keys, &_block) top_key = keys.first marker = Utils.dig_value(result, top_key, 'Marker') max_items = Utils.dig_value(result, top_key, 'MaxItems') objects = Utils.wrap(Utils.dig_value(result, *keys)).map do |hash| yield hash end new(marker, max_items, objects) end |