Module: Concurrent::Actress::CoreDelegations

Included in:
Context, Reference
Defined in:
lib/concurrent/actress/core_delegations.rb

Overview

Provides publicly expose-able methods from Core.

Instance Method Summary collapse

Instance Method Details

#executorObject



30
31
32
# File 'lib/concurrent/actress/core_delegations.rb', line 30

def executor
  core.executor
end

#nameObject



6
7
8
# File 'lib/concurrent/actress/core_delegations.rb', line 6

def name
  core.name
end

#parentObject



14
15
16
# File 'lib/concurrent/actress/core_delegations.rb', line 14

def parent
  core.parent
end

#pathObject



10
11
12
# File 'lib/concurrent/actress/core_delegations.rb', line 10

def path
  core.path
end

#referenceObject Also known as: ref



26
27
28
# File 'lib/concurrent/actress/core_delegations.rb', line 26

def reference
  core.reference
end

#terminatedObject



22
23
24
# File 'lib/concurrent/actress/core_delegations.rb', line 22

def terminated
  core.terminated
end

#terminated?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/concurrent/actress/core_delegations.rb', line 18

def terminated?
  core.terminated?
end