Class: Handsoap::AsyncDispatch
- Inherits:
-
Object
- Object
- Handsoap::AsyncDispatch
- Defined in:
- lib/handsoap/service.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
readonly
Returns the value of attribute action.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#request_block ⇒ Object
readonly
Returns the value of attribute request_block.
-
#response_block ⇒ Object
readonly
Returns the value of attribute response_block.
Instance Method Summary collapse
Instance Attribute Details
#action ⇒ Object (readonly)
Returns the value of attribute action.
136 137 138 |
# File 'lib/handsoap/service.rb', line 136 def action @action end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
136 137 138 |
# File 'lib/handsoap/service.rb', line 136 def end |
#request_block ⇒ Object (readonly)
Returns the value of attribute request_block.
136 137 138 |
# File 'lib/handsoap/service.rb', line 136 def request_block @request_block end |
#response_block ⇒ Object (readonly)
Returns the value of attribute response_block.
136 137 138 |
# File 'lib/handsoap/service.rb', line 136 def response_block @response_block end |
Instance Method Details
#request(action, options = { :soap_action => :auto }, &block) ⇒ Object
137 138 139 140 141 |
# File 'lib/handsoap/service.rb', line 137 def request(action, = { :soap_action => :auto }, &block) @action = action = @request_block = block end |
#response(&block) ⇒ Object
142 143 144 |
# File 'lib/handsoap/service.rb', line 142 def response(&block) @response_block = block end |