Class: Riak::Client::BeefcakeProtobuffsBackend::CrdtLoader::SetLoader Private

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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.



23
24
25
# File 'lib/riak/client/beefcake/crdt/set_loader.rb', line 23

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.



18
19
20
21
# File 'lib/riak/client/beefcake/crdt/set_loader.rb', line 18

def self.for_value(resp)
  return nil unless resp.set_value
  new resp.set_value
end

Instance Method Details

#rubyfyObject

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.



27
28
29
# File 'lib/riak/client/beefcake/crdt/set_loader.rb', line 27

def rubyfy
  ::Set.new @value
end