# File lib/faye/websocket/adapter.rb, line 10 def eventsource? e = defined?(@env) ? @env : env e && EventSource.eventsource?(e) end
# File lib/faye/websocket/adapter.rb, line 15 def socket_connection? websocket? or eventsource? end
# File lib/faye/websocket/adapter.rb, line 5 def websocket? e = defined?(@env) ? @env : env e && WebSocket.websocket?(e) end