Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

networking over the loopback

by dash2 (Hermit)
on May 21, 2002 at 17:31 UTC ( [id://168210]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ($self->{times_round}++ < $self->{wait_this_many_times}) {
     return; # brake by counting loops
    }
    
  2. or download this
    $self->{timer} ||= time;
    if (time - $self->{timer} < $self->{min_interval}) {
     return; # brake by counting seconds
    }
    $self->{timer} = time;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://168210]
Approved by broquaint
Front-paged by IlyaM
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-19 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found