Class: ChannelHandlerStub

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(channel_stub) ⇒ ChannelHandlerStub

Returns a new instance of ChannelHandlerStub.



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

def initialize(channel_stub)
  puts "INIT WITH : #{channel_stub.inspect}"
  @channel_stub = channel_stub
end

Class Method Details

.dispatcherObject



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

def self.dispatcher
  @@dispatcher
end

.dispatcher=(val) ⇒ Object



2
3
4
# File 'lib/volt/server/channel_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



16
17
18
# File 'lib/volt/server/channel_handler_stub.rb', line 16

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

Instance Method Details

#process_message(message) ⇒ Object



20
21
22
23
# File 'lib/volt/server/channel_handler_stub.rb', line 20

def process_message(message)
  puts "GOT: #{message.inspect}"
  @@dispatcher.dispatch(self, message)
end

#send_message(*args) ⇒ Object



25
26
27
28
# File 'lib/volt/server/channel_handler_stub.rb', line 25

def send_message(*args)
  puts "SEND MSG: #{args.inspect}"
  @channel_stub.message_received(*args)
end