module EventMachine::WebSocket::Close03
Public Instance Methods
Source
# File lib/em-websocket/close03.rb, line 4 def close_websocket(code, body) # TODO: Ideally send body data and check that it matches in ack send_frame(:close, '') @state = :closing start_close_timeout end
Source
# File lib/em-websocket/close03.rb, line 11 def supports_close_codes?; false; end