Class: Riak::Client::BeefcakeProtobuffsBackend::CrdtLoader::SetLoader Private
- Defined in:
- lib/riak/client/beefcake/crdt/set_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(set_value) ⇒ SetLoader
constructor
private
A new instance of SetLoader.
- #rubyfy ⇒ Object private
Constructor Details
#initialize(set_value) ⇒ SetLoader
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 SetLoader.
9 10 11 |
# File 'lib/riak/client/beefcake/crdt/set_loader.rb', line 9 def initialize(set_value) @value = set_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/set_loader.rb', line 4 def self.for_value(resp) return nil unless resp.set_value new resp.set_value end |