class WsdlMapper::Runtime::Middlewares::AsyncResponseLogger
Public Instance Methods
call(operation, response_promise)
click to toggle source
Calls superclass method
# File lib/wsdl_mapper/runtime/middlewares/async_response_logger.rb, line 7 def call(operation, response_promise) promise = response_promise.then do |response| super(operation, response).last end [operation, promise] end