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

Inherits:
Socket
  • Object
show all
Extended by:
Forwardable
Includes:
Celluloid::IO, Celluloid::Internals::Logger
Defined in:
lib/slack/real_time/concurrency/celluloid.rb

Defined Under Namespace

Classes: Actor

Constant Summary collapse

BLOCK_SIZE =
4096

Instance Attribute Summary collapse

Attributes inherited from Socket

#driver, #options, #url

Instance Method Summary collapse

Methods inherited from Socket

#close, #disconnect!, #send_data, #start_sync

Constructor Details

#initialize(*args) ⇒ Socket

Returns a new instance of Socket.



23
24
25
26
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 23

def initialize(*args)
  super
  @driver = build_driver
end

Instance Attribute Details

#socketObject (readonly)

Returns the value of attribute socket.



21
22
23
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 21

def socket
  @socket
end

Instance Method Details

#connect! {|driver| ... } ⇒ Object

Yield Parameters:

  • driver (WebSocket::Driver)


29
30
31
32
33
34
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 29

def connect!
  super

  driver.start
  future.run_loop
end

#connected?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 53

def connected?
  !@connected.nil?
end

#readObject



42
43
44
45
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 42

def read
  buffer = socket.readpartial(BLOCK_SIZE)
  driver.parse buffer
end

#run_loopObject



36
37
38
39
40
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 36

def run_loop
  loop { read } if socket
rescue EOFError
  # connection closed
end

#start_asyncObject



47
48
49
50
51
# File 'lib/slack/real_time/concurrency/celluloid.rb', line 47

def start_async
  future = yield self if block_given?

  Actor.new(future)
end