NAME
DynGig::RCE::Client - RCE client. Extends DynGig::Multiplex::TCP.
SYNOPSIS
use DynGig::RCE::Client;
my %config =
(
    buffer => +
    [
        {
            code => codename,
            param => ..
        },
        ...
        {
            code => ..
            param => ..
        },
    ],
    ## other DynGig::Multiplex::TCP::new() parameter
    ...
);
my $client = DynGig::RCE::Client->new( "$host:$port" => \%config );
$client->run();
NOTE
See DynGig::RCE