Class: Slack::RealTime::Concurrency::Celluloid::Socket::Actor
- Inherits:
-
Object
- Object
- Slack::RealTime::Concurrency::Celluloid::Socket::Actor
- Defined in:
- lib/slack/real_time/concurrency/celluloid.rb
Instance Attribute Summary collapse
-
#future ⇒ Object
readonly
Returns the value of attribute future.
Instance Method Summary collapse
-
#initialize(future) ⇒ Actor
constructor
A new instance of Actor.
- #join ⇒ Object
Constructor Details
#initialize(future) ⇒ Actor
Returns a new instance of Actor.
88 89 90 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 88 def initialize(future) @future = future end |
Instance Attribute Details
#future ⇒ Object (readonly)
Returns the value of attribute future.
86 87 88 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 86 def future @future end |
Instance Method Details
#join ⇒ Object
92 93 94 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 92 def join @future.value end |