method
call_async
v1_9_3_125 -
Show latest stable
- Class:
XMLRPC::Client
call_async(method, *args)public
No documentation available.
# File lib/xmlrpc/client.rb, line 424
def call_async(method, *args)
ok, param = call2_async(method, *args)
if ok
param
else
raise param
end
end