class Concurrent::Promises::AbstractEventFuture

def chain_on(executor, *args, &task)

Other tags:
    Yieldparam: reason -
    Yieldparam: value -
    Yieldparam: fulfilled -

Other tags:
    Yield: - to the task.
    Yield: - to the task.

Overloads:
  • a_future.chain_on(executor, *args, &task)
  • an_event.chain_on(executor, *args, &task)

Returns:
  • (Future) -
def chain_on(executor, *args, &task)
  ChainPromise.new_blocked_by1(self, executor, executor, args, &task).future
end