NAME
Object::Remote::Connection - An underlying connection for Object::Remote
use
Object::Remote;
my
$local
= Object::Remote->
connect
(
'-'
);
my
$remote
= Object::Remote->
connect
(
'myserver'
);
my
$remote_user
= Object::Remote->
connect
(
'user@myserver'
);
my
$local_sudo
= Object::Remote->
connect
(
'user@'
);
#$remote can be any other connection object
my
$hostname
= Sys::Hostname->can::on(
$remote
,
'hostname'
);
DESCRIPTION
This is the class that supports connections to remote objects.