# File lib/faye/transport/local.rb, line 8 def batching? false end
# File lib/faye/transport/local.rb, line 12 def request(messages) EventMachine.next_tick do @endpoint.process(messages, nil) do |replies| receive(Faye.copy_object(replies)) end end end
# File lib/faye/transport/local.rb, line 4 def self.usable?(dispatcher, endpoint, &callback) callback.call(Server === endpoint) end