Concurrent::Promises::InnerPromise
# File lib/concurrent/promises.rb, line 1548 def initialize(default_executor, fulfilled, value, reason) super Future.new(self, default_executor). resolve_with(fulfilled ? Fulfilled.new(value) : Rejected.new(reason)) end