Module: Manticore::Client::ProxiesInterface
- Included in:
- Manticore::Client, BaseProxy
- Defined in:
- lib/manticore/client/proxies.rb
Instance Method Summary collapse
-
#async ⇒ Object
(also: #parallel, #batch)
Causes the next request to be made asynchronously.
-
#background ⇒ Object
Causes the next request to be made immediately in the background.
- #respond_with(stubs) ⇒ Object
Instance Method Details
#async ⇒ Object Also known as: parallel, batch
Causes the next request to be made asynchronously
9 10 11 |
# File 'lib/manticore/client/proxies.rb', line 9 def async AsyncProxy.new(self) end |
#background ⇒ Object
Causes the next request to be made immediately in the background
17 18 19 |
# File 'lib/manticore/client/proxies.rb', line 17 def background BackgroundProxy.new(self) end |