class Celluloid::Internals::Response
Responses to calls
Attributes
call[R]
value[R]
Public Class Methods
new(call, value)
click to toggle source
# File lib/celluloid/internals/responses.rb, line 7 def initialize(call, value) @call, @value = call, value end
Public Instance Methods
dispatch()
click to toggle source
# File lib/celluloid/internals/responses.rb, line 11 def dispatch @call.task.resume self end