Vipul Ved Prakash > Concurrent-Object > Concurrent::Object

Download:
Concurrent-Object-1.07.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 1.07   Source  

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>