-
-
21 Jun 2001 04:30:54 UTC
- Distribution: Concurrent-Object
- Module version: 1.07
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (82 / 116 / 1)
- Kwalitee
Bus factor: 1- % Coverage
- License: unknown
- Activity
24 month- Tools
- Download (10.15KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
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>
Module Install Instructions
To install Concurrent::Object, copy and paste the appropriate command in to your terminal.
cpanm Concurrent::Object
perl -MCPAN -e shell install Concurrent::Object
For more information on module installation, please visit the detailed CPAN module installation guide.