split want_run versus blocking run for ::Future
[scpubgit/Object-Remote.git] / bin / object-remote-node
index 638b6bc..ed1ba32 100755 (executable)
@@ -3,13 +3,21 @@
 use strictures 1;
 use Object::Remote::Connector::STDIO;
 use Object::Remote;
-
-#$Object::Remote::Connection::DEBUG = 1;
+use CPS::Future;
 
 my $c = Object::Remote::Connector::STDIO->new->connect;
 
+$c->ready_future->done;
+
 my $loop = Object::Remote->current_loop;
 
-$c->on_close(sub { $loop->stop });
+my $f = CPS::Future->new;
+
+$f->on_ready(sub { $loop->want_stop });
+
+$c->on_close($f);
+
+print { $c->send_to_fh } "Shere\n";
 
-$loop->run;
+$loop->want_run;
+$loop->run_while_wanted;