module Faye::WebSocket::Client::Connection

Attributes

parent[RW]

Public Instance Methods

connection_completed() click to toggle source
# File lib/faye/websocket/client.rb, line 45
def connection_completed
  parent.__send__(:on_connect)
end
receive_data(data) click to toggle source
# File lib/faye/websocket/client.rb, line 49
def receive_data(data)
  parent.__send__(:parse, data)
end
unbind() click to toggle source
# File lib/faye/websocket/client.rb, line 53
def unbind
  parent.__send__(:finalize, '', 1006)
end
write(data) click to toggle source
# File lib/faye/websocket/client.rb, line 57
def write(data)
  send_data(data) rescue nil
end