class Tzispa::Annotations::Builtin::Async

Public Instance Methods

call(method, *args, &block) click to toggle source
# File lib/tzispa/annotations/builtin/async.rb, line 7
def call(method, *args, &block)
  Thread.new { method.call(*args, &block) }
end