Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm at a loss what it means, though I'm read several examples on it:

#!/usr/bin/perl
use strict;
use AnyEvent;

my $cv = AnyEvent->condvar( cb => sub {
    warn "done";
});

for my $i (1..10) {
    $cv->begin;
    my $w; $w = AnyEvent->timer(after => $i, cb => sub {
    warn "finished timer $i";
    undef $w;
    $cv->end;
    });
}

$cv->recv;

Can anyone explain in more detail what send/recv/begin/end does?

UPDATE

my $i = 1;
my $s = sub {
    print $i;
};
my $i = 10;
$s->();  # 1
share|improve this question

1 Answer

up vote 4 down vote accepted

In the code you provided, the condvar is there to prevent the program from exiting prematurely. Without the recv, the program would end before any timers would have a chance to fire. With the recv, all ten timers must fire before recv returns.

recv will block if send has never been called. It will unblock when send is called.

begin and end is an alternative to using send. When there has been as many end calls as there has been begin calls, a send occurs.

AnyEvent

share|improve this answer
IMO the undef $w always undefines the last instance of AnyEvent->timer,what do you think? – new_perl Oct 14 '11 at 5:17
@new_perl, no, just the one that just triggered. – ikegami Oct 14 '11 at 8:01
Why ? IMO the callback is called after the loop,so only the last instance is referenced – new_perl Oct 14 '11 at 8:14
@new_perl: Because $w has fallen out of scope everywhere else other than the coderef. Each time through the loop the coderef refers to its own distinct $w and each time the callback undefs its own reference. There is no scope whatsoever to $w after the loop aside from the reference to it in the callback. – Oesor Oct 14 '11 at 16:26
@new_perl, Everything you run my, it creates another variable. – ikegami Oct 14 '11 at 18:10
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.