I am trying to get AnyEvent to work on what I thought would be a simple bit code. My code does not work.

Clearly I have misunderstood something. I am trying run the following on a Windows PC. There are two processes, one a very simple routine which opens and appends data to a file and the second to read the data as and when it is written.
use strict; use warnings; use AnyEvent; use AnyEvent::Strict; open(my $fh, '<', 'C:/Temp/TestFile.txt') or die $!; my $done = AnyEvent->condvar; my $watcher = AnyEvent->io ( fh => $fh , poll => 'r' , cb => sub { my $input = <$fh>; print "Input [$input]\n"; if ( $input =~ /^End of processing file/ ) {$done->sen +d; } } ); $done->recv; close $fh or die $!; print "All done!\n";
However the code just terminates with the following:-
AnyEvent->io called with fh argument pointing to a file at script\test +\AnyEvent0.pl line 18.
Please can one point out what I have done wrong? Thanks.

In reply to AnyEvent trying to read from a file by wheelej

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.