class SOAP::RPC::Router::RequestScopeOperation

Public Class Methods

new(soapaction, receiver_factory, name, param_def, opt) click to toggle source
Calls superclass method SOAP::RPC::Router::Operation::new
# File lib/soap/rpc/router.rb, line 576
def initialize(soapaction, receiver_factory, name, param_def, opt)
  super(soapaction, name, param_def, opt)
  unless receiver_factory.respond_to?(:create)
    raise TypeError.new("factory must respond to 'create'")
  end
  @receiver_factory = receiver_factory
end

Private Instance Methods

receiver() click to toggle source
# File lib/soap/rpc/router.rb, line 586
def receiver
  @receiver_factory.create
end