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

NAME

ControlFreak::Console - Handles all communications with ControlFreak

SYNOPSIS

    $con = ControlFreak::Console->new(
        host    => $host,
        service => $service,
        full    => 1,
        ctrl    => $ctrl,
    );
    $con->start;

    ## return all the current connection handles
    @hdls = $con->conns;

    $con->add_conn($hdl);

    $ok = $con->process_command($string);

    $con->stop;

METHODS

start

Starts the console

AUTHOR

Yann Kerherve <yannk@cpan.org>