class WsdlMapper::Runtime::Middlewares::AsyncResponseFactory

Public Instance Methods

call(operation, http_response_promise) click to toggle source
Calls superclass method
# File lib/wsdl_mapper/runtime/middlewares/async_response_factory.rb, line 7
def call(operation, http_response_promise)
  response_promise = http_response_promise.then do |http_response|
    super(operation, http_response).last
  end

  [operation, response_promise]
end