TSVRPC::Client - TSV-RPC client library
use TSVRPC::Client; my $t = TSVRPC::Client->new( base => 'http://localhost:1978/rpc/', agent => "myagent", timeout => 1 ); $t->call('echo', {a => 'b'});
The client library for TSV-RPC.
Create new instance.
Call the $method with \%args.
$encoding: the encoding for TSVRPC call. Following methods are available.
B: Base64(Default. Because its very fast) Q: Quoted-Printable U: URI escape
Return: $code: HTTP status code, $body: body hashref, $http_message: HTTP message.