Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
multicall(*methods)
public
You can use this method to execute several methods on a XMLRPC server which support the multi-call
extension.
s.multicall(
['michael.add', 3, 4],
['michael.sub', 4, 5]
)
# File lib/xmlrpc/client.rb, line 333
def multicall(*methods)
ok, params = multicall2(*methods)
if ok
params
else
raise params
end
end