Class SOAP::RPC::Router::RequestScopeOperation
In: lib/soap/rpc/router.rb
Parent: Operation

Methods

new   receiver  

Public Class methods

[Source]

     # File lib/soap/rpc/router.rb, line 576
576:     def initialize(soapaction, receiver_factory, name, param_def, opt)
577:       super(soapaction, name, param_def, opt)
578:       unless receiver_factory.respond_to?(:create)
579:         raise TypeError.new("factory must respond to 'create'")
580:       end
581:       @receiver_factory = receiver_factory
582:     end

Private Instance methods

[Source]

     # File lib/soap/rpc/router.rb, line 586
586:     def receiver
587:       @receiver_factory.create
588:     end

[Validate]