module Faye::WebSocket::Client::Connection
Attributes
Public Instance Methods
Source
# File lib/faye/websocket/client.rb, line 95 def connection_completed parent.__send__(:on_connect, self) end
Source
# File lib/faye/websocket/client.rb, line 107 def receive_data(data) parent.__send__(:parse, data) end
Source
# File lib/faye/websocket/client.rb, line 103 def ssl_handshake_completed parent.__send__(:ssl_handshake_completed) end
Source
# File lib/faye/websocket/client.rb, line 99 def ssl_verify_peer(cert) parent.__send__(:ssl_verify_peer, cert) end
Source
# File lib/faye/websocket/client.rb, line 111 def unbind(error = nil) parent.__send__(:emit_error, error) if error parent.__send__(:finalize_close) end
Source
# File lib/faye/websocket/client.rb, line 116 def write(data) send_data(data) rescue nil end