in reply to Re^2: Do While, While
in thread Do While, While
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 .... } };
|
|---|