The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

RPC::Serialized::Client::STDIO - RPC client using Standard I/O

VERSION

version 1.123630

SYNOPSIS

 use RPC::Serialized::Client::STDIO;
  
 my $c = RPC::Serialized::Client::STDIO->new;
  
 my $result = $c->remote_sub_name(qw/ some data /);
     # remote_sub_name gets mapped to an invocation on the RPC server
     # it's best to wrap this in an eval{} block

DESCRIPTION

This module allows you to communicate with an RPC::Serialized server over Standard Input and Standard Output.

You would not normally use this module directly, except perhaps for testing. It might be more useful as a base class upon which to build another more useful client.

For further information on how to pass settings into RPC::Serialized, and make RPC calls against the server, please see the RPC::Serialized manual page.

THANKS

This module is a derivative of YAML::RPC, written by pod and Ray Miller, at the University of Oxford Computing Services. Without their brilliant creation this system would not exist.

AUTHOR

Oliver Gorwits <oliver@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by University of Oxford.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.