class Celluloid::Internals::Stack::ThreadState

Public Instance Methods

dump() click to toggle source
# File lib/celluloid/internals/stack/states.rb, line 25
def dump
  string = ""
  string << "Thread 0x#{thread_id.to_s(16)} (#{role}):\n"
  display_backtrace backtrace, string if backtrace
  string
end