Method: Aerospike::ReadCommand#initialize

Defined in:
lib/aerospike/command/read_command.rb

#initialize(cluster, policy, key, bin_names) ⇒ ReadCommand

Returns a new instance of ReadCommand.

[View source]

35
36
37
38
39
40
41
42
# File 'lib/aerospike/command/read_command.rb', line 35

def initialize(cluster, policy, key, bin_names)
  super(cluster, key)

  @bin_names = bin_names
  @policy = policy

  self
end