Module: Concurrent::Actress::CoreDelegations
Overview
Provides publicly expose-able methods from Core.
Instance Method Summary collapse
- #executor ⇒ Object
- #name ⇒ Object
- #parent ⇒ Object
- #path ⇒ Object
- #reference ⇒ Object (also: #ref)
- #terminated ⇒ Object
- #terminated? ⇒ Boolean
Instance Method Details
#executor ⇒ Object
30 31 32 |
# File 'lib/concurrent/actress/core_delegations.rb', line 30 def executor core.executor end |
#name ⇒ Object
6 7 8 |
# File 'lib/concurrent/actress/core_delegations.rb', line 6 def name core.name end |
#parent ⇒ Object
14 15 16 |
# File 'lib/concurrent/actress/core_delegations.rb', line 14 def parent core.parent end |
#path ⇒ Object
10 11 12 |
# File 'lib/concurrent/actress/core_delegations.rb', line 10 def path core.path end |
#reference ⇒ Object Also known as: ref
26 27 28 |
# File 'lib/concurrent/actress/core_delegations.rb', line 26 def reference core.reference end |
#terminated ⇒ Object
22 23 24 |
# File 'lib/concurrent/actress/core_delegations.rb', line 22 def terminated core.terminated end |
#terminated? ⇒ Boolean
18 19 20 |
# File 'lib/concurrent/actress/core_delegations.rb', line 18 def terminated? core.terminated? end |