Class: Concurrent::Promises::ZipEventEventPromise
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: | Concurrent::Promises::BlockedPromise |
Defined in: | lib/concurrent-ruby/concurrent/promises.rb |
Constant Summary
InternalStates
- Included
Class Attribute Summary
Synchronization::Object
- Inherited
Class Method Summary
BlockedPromise
- Inherited
AbstractPromise
- Inherited
Synchronization::Object
- Inherited
.atomic_attribute?, .atomic_attributes, | |
.attr_atomic | Creates methods for reading and writing to a instance variable with volatile (Java) semantic as |
.attr_volatile | Creates methods for reading and writing (as |
.ensure_safe_initialization_when_final_fields_are_present | For testing purposes, quite slow. |
.new | Has to be called by children. |
.safe_initialization!, .define_initialize_atomic_fields |
Synchronization::AbstractObject
- Inherited
Instance Method Summary
BlockedPromise
- Inherited
#blocked_by | for inspection only. |
#delayed_because, #on_blocker_resolution, #touch, #clear_and_propagate_touch, #on_resolvable, #process_on_blocker_resolution, #resolvable? |
AbstractPromise
- Inherited
#default_executor, #delayed_because, | |
#event | Alias for AbstractPromise#future. |
#future, | |
#inspect | Alias for AbstractPromise#to_s. |
#state, #to_s, #touch, #evaluate_to, #resolve_with |
Synchronization::Object
- Inherited
Synchronization::Volatile
- Included
Synchronization::AbstractObject
- Inherited
Constructor Details
.new(delayed, blockers_count, default_executor) ⇒ ZipEventEventPromise
# File 'lib/concurrent-ruby/concurrent/promises.rb', line 1941
def initialize(delayed, blockers_count, default_executor) super delayed, 2, Event.new(self, default_executor) end
Instance Method Details
#on_resolvable(resolved_future, index) (private)
[ GitHub ]# File 'lib/concurrent-ruby/concurrent/promises.rb', line 1947
def on_resolvable(resolved_future, index) resolve_with RESOLVED end