class ActiveRecord::FutureResult::Complete
:nodoc:
def canceled?
def canceled? false end
def initialize(result)
def initialize(result) @result = result end
def pending?
def pending? false end
def then(&block)
def then(&block) Promise::Complete.new(@result.then(&block)) end