class TingYun::Agent::TransactionSampleBuilder::PlaceholderNode

Attributes

depth[RW]
parent_node[R]

Public Class Methods

new(parent_node) click to toggle source
# File lib/ting_yun/agent/transaction/transaction_sample_builder.rb, line 14
def initialize(parent_node)
  @parent_node = parent_node
  @depth = 1
end

Public Instance Methods

[](key) click to toggle source

No-op - some clients expect to be able to use these to read/write params on TT nodes.

# File lib/ting_yun/agent/transaction/transaction_sample_builder.rb, line 21
def [](key); end
[]=(key, value) click to toggle source
# File lib/ting_yun/agent/transaction/transaction_sample_builder.rb, line 22
def []=(key, value); end
params() click to toggle source

Stubbed out in case clients try to touch params directly.

# File lib/ting_yun/agent/transaction/transaction_sample_builder.rb, line 25
def params; {}; end
params=() click to toggle source
# File lib/ting_yun/agent/transaction/transaction_sample_builder.rb, line 26
def params=; end