class WsdlMapper::Runtime::BackendBase
Attributes
stack[R]
Public Class Methods
new()
click to toggle source
@!attribute stack
@return [WsdlMapper::Runtime::MiddlewareStack]
# File lib/wsdl_mapper/runtime/backend_base.rb, line 12 def initialize @stack = MiddlewareStack.new end
Public Instance Methods
dispatch(operation, *input)
click to toggle source
# File lib/wsdl_mapper/runtime/backend_base.rb, line 16 def dispatch(operation, *input) stack.execute([operation, *input]).last end