class Celluloid::Actor

Private Instance Methods

timeout(*args) { || ... } click to toggle source

Using the module method now instead of doing everything by itself.

# File lib/timeout/extensions/celluloid.rb, line 47
def timeout(*args)
  Celluloid.timeout(*args) { yield }
end