module Faye::WebSocket::Client::Connection
Attributes
parent[RW]
Public Instance Methods
connection_completed()
click to toggle source
# File lib/faye/websocket/client.rb, line 75 def connection_completed parent.__send__(:on_connect, self) end
receive_data(data)
click to toggle source
# File lib/faye/websocket/client.rb, line 79 def receive_data(data) parent.__send__(:parse, data) end
unbind(error = nil)
click to toggle source
# File lib/faye/websocket/client.rb, line 83 def unbind(error = nil) parent.__send__(:emit_error, error) if error parent.__send__(:finalize_close) end
write(data)
click to toggle source
# File lib/faye/websocket/client.rb, line 88 def write(data) send_data(data) rescue nil end