Class | SOAP::RPC::Router::RequestScopeOperation |
In: |
lib/soap/rpc/router.rb
|
Parent: | Operation |
# 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