方法
属性
[R] | result |
类公共方法
new(result) 链接
来源: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/future_result.rb, line 9 def initialize(result) @result = result end
实例公共方法
canceled?() 链接
来源: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/future_result.rb, line 17 def canceled? false end
pending?() 链接
来源: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/future_result.rb, line 13 def pending? false end
then(&block) 链接
来源: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/future_result.rb, line 21 def then(&block) Promise::Complete.new(@result.then(&block)) end