Method: Restify::Adapter::EM#call
- Defined in:
- lib/restify/adapter/em.rb
#call(request) ⇒ Object
108 109 110 111 112 113 114 |
# File 'lib/restify/adapter/em.rb', line 108 def call(request) Promise.create do |writer| next_tick do Connection.open(request.uri).call(request, writer) end end end |