Class: Slack::RealTime::Concurrency::Celluloid::Socket::Actor

Inherits:
Object
  • Object
show all
Defined in:
lib/slack/real_time/concurrency/celluloid.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(future) ⇒ Actor

Returns a new instance of Actor.



106
107
108
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 106

def initialize(future)
  @future = future
end

Instance Attribute Details

#futureObject (readonly)

Returns the value of attribute future.



104
105
106
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 104

def future
  @future
end

Instance Method Details

#joinObject



110
111
112
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 110

def join
  @future.value
end