Class: Riak::Client::BeefcakeProtobuffsBackend::CrdtLoader::MapLoader Private
- Defined in:
- lib/riak/client/beefcake/crdt/map_loader.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .for_value(resp) ⇒ Object private
Instance Method Summary collapse
-
#initialize(map_value) ⇒ MapLoader
constructor
private
A new instance of MapLoader.
- #rubyfy ⇒ Object private
Constructor Details
#initialize(map_value) ⇒ MapLoader
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of MapLoader.
9 10 11 |
# File 'lib/riak/client/beefcake/crdt/map_loader.rb', line 9 def initialize(map_value) @value = map_value end |
Class Method Details
.for_value(resp) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
4 5 6 7 |
# File 'lib/riak/client/beefcake/crdt/map_loader.rb', line 4 def self.for_value(resp) return nil unless resp.map_value new resp.map_value end |
Instance Method Details
#rubyfy ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/riak/client/beefcake/crdt/map_loader.rb', line 13 def rubyfy accum = { counters: {}, flags: {}, maps: {}, registers: {}, sets: {} } contents_loop @value, accum end |