class RubyBreaker::Runtime::MethodInfo

This class has information (and data) of the method being called. Used by Pluggable and Monitor

Attributes

args[RW]
blk[RW]
meth_name[RW]
ret[RW]

Public Class Methods

new(meth_name, args, blk, ret) click to toggle source
# File lib/rubybreaker/runtime/pluggable.rb, line 19
def initialize(meth_name, args, blk, ret)
  @meth_name = meth_name
  @args = args
  @blk = blk
  @ret = ret
end