The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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