fix bug where dead connections would not execute cleanup code; add in repeating timer...
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / Local.pm
CommitLineData
9e72f0cf 1package Object::Remote::Connector::Local;
2
9e72f0cf 3use Moo;
4
a9fdb55e 5with 'Object::Remote::Role::Connector::PerlInterpreter';
9e72f0cf 6
7efea51f 7no warnings 'once';
8
07105aca 9BEGIN { }
10
84b04178 11push @Object::Remote::Connection::Guess, sub {
fbd3b8ec 12 if (($_[0]||'') eq '-') { __PACKAGE__->new }
84b04178 13};
14
9e72f0cf 151;