class Isomorfeus::AssetManager::ServerSocketProcessor
Public Instance Methods
on_close(client)
click to toggle source
# File lib/isomorfeus/asset_manager/server_socket_processor.rb, line 8 def on_close(client) # client.unsubscribe Isomorfeus.asset_manager_hmr_channel end
on_message(client, data)
click to toggle source
# File lib/isomorfeus/asset_manager/server_socket_processor.rb, line 4 def on_message(client, data) # nothing for now end
on_open(client)
click to toggle source
# File lib/isomorfeus/asset_manager/server_socket_processor.rb, line 12 def on_open(client) client.subscribe Isomorfeus.asset_manager_hmr_channel end
on_shutdown(client)
click to toggle source
# File lib/isomorfeus/asset_manager/server_socket_processor.rb, line 16 def on_shutdown(client) # nothing for now end