Class: SOAP::RPC::Router::RequestScopeOperation
- Defined in:
- lib/soap/rpc/router.rb
Instance Attribute Summary
Attributes inherited from Operation
#name, #request_style, #request_use, #response_style, #response_use, #soapaction
Instance Method Summary collapse
-
#initialize(soapaction, receiver_factory, name, param_def, opt) ⇒ RequestScopeOperation
constructor
A new instance of RequestScopeOperation.
Methods inherited from Operation
#call, #request_default_encodingstyle, #response_default_encodingstyle
Constructor Details
#initialize(soapaction, receiver_factory, name, param_def, opt) ⇒ RequestScopeOperation
Returns a new instance of RequestScopeOperation.
576 577 578 579 580 581 582 |
# 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 |