module Faye::WebSocket::Client::Connection
Attributes
parent[RW]
Public Instance Methods
connection_completed()
click to toggle source
# File lib/faye/websocket/client.rb, line 89 def connection_completed parent.__send__(:on_connect, self) end
receive_data(data)
click to toggle source
# File lib/faye/websocket/client.rb, line 101 def receive_data(data) parent.__send__(:parse, data) end
ssl_handshake_completed()
click to toggle source
# File lib/faye/websocket/client.rb, line 97 def ssl_handshake_completed parent.__send__(:ssl_handshake_completed) end
ssl_verify_peer(cert)
click to toggle source
# File lib/faye/websocket/client.rb, line 93 def ssl_verify_peer(cert) parent.__send__(:ssl_verify_peer, cert) end
unbind(error = nil)
click to toggle source
# File lib/faye/websocket/client.rb, line 105 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 110 def write(data) send_data(data) rescue nil end