Method: Celluloid.stack_dump

Defined in:
lib/celluloid.rb

.stack_dump(output = STDERR) ⇒ Object Also known as: dump

Perform a stack dump of all actors to the given output object



113
114
115
# File 'lib/celluloid.rb', line 113

def stack_dump(output = STDERR)
  actor_system.stack_dump.print(output)
end