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.



83
84
85
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 83

def initialize(future)
  @future = future
end

Instance Attribute Details

#futureObject (readonly)

Returns the value of attribute future.



81
82
83
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 81

def future
  @future
end

Instance Method Details

#joinObject



87
88
89
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 87

def join
  @future.value
end