Method: Aerospike::MultiCommand#initialize

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

#initialize(node) ⇒ MultiCommand

Returns a new instance of MultiCommand.



26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/aerospike/command/multi_command.rb', line 26

def initialize(node)
  super

  @valid = true
  @mutex = Mutex.new

  @compressed_data_buffer = nil
  @compressed_data_offset = nil

  @node_partitions = nil
  @tracker = nil

  self
end