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.
70 71 72 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 70 def initialize(future) @future = future end |
Instance Attribute Details
#future ⇒ Object (readonly)
Returns the value of attribute future.
68 69 70 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 68 def future @future end |
Instance Method Details
#join ⇒ Object
74 75 76 |
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 74 def join @future.value end |