The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Concurrent::Object - Concurrent Objects in Perl.

VERSION

    $Revision: 1.7 $

SYNOPSIS

    use Concurrent::Object; 

    my $co = Concurrent( 'class' )->constructor( @arguments );

    $co->method_bg;           # returns immediately
    my $rv = $co->method_fg;  # blocks

    OR 

    my $co = Concurrent( 'class', Method => 3 )->constructor( @arguments );
    
    my $rv = $co->method;     # returns immediately
    $rv->value;               # blocks

WARNING

This is Alpha software.

DESCRIPTION

[coming soon]

AUTHOR

Vipul Ved Prakash, <mail@vipul.net>