NAME

RMI::Server::Tcp - do RMI over a TCP/IP socket

SYNOPSIS

$s = RMI::Server::Tcp->new(
    port => 1234            # defaults to 10293
);
$s->run;

DESCRIPTION

This subclass of RMI::Server makes a TCP/IP listening socket, and accepts multiple non-blocking IO connections.

METHODS

This class overrides the constructor for a default RMI::Server to make a listening socket. Individual accepted connections get their own private subordinate RMI::Server of this class.

BUGS AND CAVEATS

See general bugs in RMI for general system limitations of proxied objects.

SEE ALSO

RMI, RMI::Client::Tcp, RMI::Client, RMI::Server, RMI::Node, RMI::ProxyObject