in reply to Re: Do While, While
in thread Do While, While

I keep on reading the stream. I´m saving information of coming commands.
# Keep reading lines from the server. while (my $input = <$server>) { #save incoming information to database ... do this and that # Check errormessages and .... }
But I would still like to use the frontend

Replies are listed 'Best First'.
Re^3: Do While, While
by BrowserUk (Patriarch) on Apr 07, 2008 at 18:39 UTC

    This ain't gonna do what you need to do, but given the sparsity of information supplied...

    use threads; ... async{ # Keep reading lines from the server. while (my $input = <$server>) { #save incoming information to database ... do this and that # Check errormessages and .... } };

    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.