Class: Concurrent::Promises::AbstractEventFuture

Inherits:
Synchronization::Object
  • Object
show all
Defined in:
lib/concurrent-ruby/concurrent/promises.rb

Overview

Common ancestor of Event and Future classes, many shared methods are defined here.

Direct Known Subclasses

Event, Future

Instance Method Summary collapse

Instance Method Details

#chain(*args, &task) ⇒ Future

Shortcut of #chain_on with default ‘:io` executor supplied.

Returns:

See Also:



595
596
597
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 595

def chain(*args, &task)
  chain_on @DefaultExecutor, *args, &task
end

#an_event.chain_on(executor, *args) {|*args| ... } ⇒ Future #a_future.chain_on(executor, *args) {|fulfilled, value, reason, *args| ... } ⇒ Future

Chains the task to be executed asynchronously on executor after it is resolved.

Overloads:

  • #an_event.chain_on(executor, *args) {|*args| ... } ⇒ Future

    Yields:

    • (*args)

      to the task.

  • #a_future.chain_on(executor, *args) {|fulfilled, value, reason, *args| ... } ⇒ Future

    Yields:

    • (fulfilled, value, reason, *args)

      to the task.

    Yield Parameters:

    • fulfilled (true, false)
    • value (Object)
    • reason (Object)

Parameters:

  • executor (Executor, :io, :fast)

    Instance of an executor or a name of the global executor. The task is executed on it, default executor remains unchanged.

  • args (Object)

    arguments which are passed to the task when it’s executed. (It might be prepended with other arguments, see the @yeild section).

Yield Returns:

  • will become result of the returned Future. Its returned value becomes Future#value fulfilling it, raised exception becomes Future#reason rejecting it.

Returns:



613
614
615
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 613

def chain_on(executor, *args, &task)
  ChainPromise.new_blocked_by1(self, @DefaultExecutor, executor, args, &task).future
end

#chain_resolvable(resolvable) ⇒ self Also known as: tangle

Resolves the resolvable when receiver is resolved.

Parameters:

Returns:

  • (self)


628
629
630
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 628

def chain_resolvable(resolvable)
  on_resolution! { resolvable.resolve_with internal_state }
end

#default_executorExecutor

Returns default executor.



589
590
591
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 589

def default_executor
  @DefaultExecutor
end

#internal_stateObject

Returns The internal_state.

Returns:

  • (Object)

    The internal_state.



514
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 514

attr_atomic(:internal_state)

#on_resolution(*args, &callback) ⇒ self

Shortcut of #on_resolution_using with default ‘:io` executor supplied.

Returns:

  • (self)

See Also:



636
637
638
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 636

def on_resolution(*args, &callback)
  on_resolution_using @DefaultExecutor, *args, &callback
end

#an_event.on_resolution!(*args) {|*args| ... } ⇒ self #a_future.on_resolution!(*args) {|fulfilled, value, reason, *args| ... } ⇒ self

Stores the callback to be executed synchronously on resolving thread after it is resolved.

Overloads:

  • #an_event.on_resolution!(*args) {|*args| ... } ⇒ self

    Yields:

    • (*args)

      to the callback.

  • #a_future.on_resolution!(*args) {|fulfilled, value, reason, *args| ... } ⇒ self

    Yields:

    • (fulfilled, value, reason, *args)

      to the callback.

    Yield Parameters:

    • fulfilled (true, false)
    • value (Object)
    • reason (Object)

Parameters:

  • args (Object)

    arguments which are passed to the task when it’s executed. (It might be prepended with other arguments, see the @yeild section).

Yield Returns:

  • is forgotten.

Returns:

  • (self)


654
655
656
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 654

def on_resolution!(*args, &callback)
  add_callback :callback_on_resolution, args, callback
end

#an_event.on_resolution_using(executor, *args) {|*args| ... } ⇒ self #a_future.on_resolution_using(executor, *args) {|fulfilled, value, reason, *args| ... } ⇒ self

Stores the callback to be executed asynchronously on executor after it is resolved.

Overloads:

  • #an_event.on_resolution_using(executor, *args) {|*args| ... } ⇒ self

    Yields:

    • (*args)

      to the callback.

  • #a_future.on_resolution_using(executor, *args) {|fulfilled, value, reason, *args| ... } ⇒ self

    Yields:

    • (fulfilled, value, reason, *args)

      to the callback.

    Yield Parameters:

    • fulfilled (true, false)
    • value (Object)
    • reason (Object)

Parameters:

  • executor (Executor, :io, :fast)

    Instance of an executor or a name of the global executor. The task is executed on it, default executor remains unchanged.

  • args (Object)

    arguments which are passed to the task when it’s executed. (It might be prepended with other arguments, see the @yeild section).

Yield Returns:

  • is forgotten.

Returns:

  • (self)


672
673
674
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 672

def on_resolution_using(executor, *args, &callback)
  add_callback :async_callback_on_resolution, executor, args, callback
end

#pending?Boolean

Is it in pending state?

Returns:

  • (Boolean)


548
549
550
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 548

def pending?
  !internal_state.resolved?
end

#resolved?Boolean

Is it in resolved state?

Returns:

  • (Boolean)


554
555
556
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 554

def resolved?
  internal_state.resolved?
end

#an_event.state:pending, :resolved #a_future.state:pending, ...

Returns its state.

Overloads:

  • #an_event.state:pending, :resolved

    Returns:

    • (:pending, :resolved)
  • #a_future.state:pending, ...

    Both :fulfilled, :rejected implies :resolved.

    Returns:

    • (:pending, :fulfilled, :rejected)

Returns:

  • (Symbol)


542
543
544
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 542

def state
  internal_state.to_sym
end

#to_sString Also known as: inspect

Returns Short string representation.

Returns:

  • (String)

    Short string representation.



618
619
620
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 618

def to_s
  format '%s %s>', super[0..-2], state
end

#touchself

Propagates touch. Requests all the delayed futures, which it depends on, to be executed. This method is called by any other method requiring resolved state, like #wait.

Returns:

  • (self)


561
562
563
564
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 561

def touch
  @Promise.touch
  self
end

#wait(timeout = nil) ⇒ self, ...

Note:

This function potentially blocks current thread until the Future is resolved. Be careful it can deadlock. Try to chain instead.

Wait (block the Thread) until receiver is #resolved?. Calls AbstractEventFuture#touch.

Parameters:

  • timeout (Numeric) (defaults to: nil)

    the maximum time in second to wait.

Returns:

  • (self, true, false)

    self implies timeout was not used, true implies timeout was used and it was resolved, false implies it was not resolved within timeout.



577
578
579
580
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 577

def wait(timeout = nil)
  result = wait_until_resolved(timeout)
  timeout ? result : self
end

#with_default_executor(executor) ⇒ AbstractEventFuture

This method is abstract.

Crates new object with same class with the executor set as its new default executor. Any futures depending on it will use the new default executor.

Returns:

Raises:

  • (NotImplementedError)

See Also:



682
683
684
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 682

def with_default_executor(executor)
  raise NotImplementedError
end