Class: SocketConnectionHandlerStub

Inherits:
Object
  • Object
show all
Defined in:
lib/volt/server/socket_connection_handler_stub.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(channel_stub) ⇒ SocketConnectionHandlerStub

Returns a new instance of SocketConnectionHandlerStub.



10
11
12
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 10

def initialize(channel_stub)
  @channel_stub = channel_stub
end

Class Method Details

.dispatcherObject



6
7
8
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 6

def self.dispatcher
  @@dispatcher
end

.dispatcher=(val) ⇒ Object



2
3
4
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 2

def self.dispatcher=(val)
  @@dispatcher = val
end

.send_message_all(skip_channel = nil, *args) ⇒ Object

Sends a message to all, optionally skipping a users channel



15
16
17
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 15

def self.send_message_all(skip_channel=nil, *args)
  # Stub
end

Instance Method Details

#process_message(message) ⇒ Object



19
20
21
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 19

def process_message(message)
  @@dispatcher.dispatch(self, message)
end

#send_message(*args) ⇒ Object



23
24
25
# File 'lib/volt/server/socket_connection_handler_stub.rb', line 23

def send_message(*args)
  @channel_stub.message_received(*args)
end