Method: Async::Node#print_hierarchy
- Defined in:
- lib/async/node.rb
permalink #print_hierarchy(out = $stdout, backtrace: true) ⇒ Object
Print the hierarchy of the task tree from the given node.
304 305 306 307 308 309 310 311 312 |
# File 'lib/async/node.rb', line 304 def print_hierarchy(out = $stdout, backtrace: true) self.traverse do |node, level| indent = "\t" * level out.puts "#{indent}#{node}" print_backtrace(out, indent, node) if backtrace end end |