The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Promises::Test::AE;

use strict;
use warnings;

use AE;

sub new {
    return bless {}, shift;
}

my $cv = AE::cv;

sub start { $cv->recv }
sub stop  { $cv->send }


1;