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

Inherits:
Object
  • Object
show all
Defined in:
lib/riak/client/beefcake/crdt/set_loader.rb

Overview

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.

API:

  • private

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.

API:

  • private



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.

API:

  • private



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

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.

API:

  • private



13
14
15
# File 'lib/riak/client/beefcake/crdt/set_loader.rb', line 13

def rubyfy
  ::Set.new @value
end