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

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.

SEE ALSO

Object::Remote::Role::Connector::PerlInterpreter
Object::Remote