NAME
threads::variables::reap::attr - reap variables in new threads by attribute
VERSION
Version 0.01
SYNOPSIS
use threads::variables::reap::attr;
# force database handle being reaped in each new thread
my $dbh : reap = DBI->connect(...);
# force array being emptied in each new thread
my @connections : reap = map { DBI->connect( @{$_} ) } @dsnlist;
DESCRIPTION
threads::variables::reap::attr
provides an attribute reap
by lexical scoping using Attribute::Lexical to mark variables to get reaped in new threads or child processes at compile time.
AUTHOR
Jens Rehsack, <rehsack at cpan.org>
BUGS
Please report any bugs or feature requests to bug-threads-variables-reap at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=threads-variables-reap. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc threads::variables::reap::attr
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=threads-variables-reap
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
Larry Wall for giving us Perl - all our modules provide on his work. David Golden for his great contribution about Perl and threads on PerlMonks (see http://www.perlmonks.org/?node_id=483162). Steffen Mueller for Attribute::Handlers and the helpful explanantion about attributes there. Andrew Main, Adam Kennedy and Joshua ben Jore helping me pointing my problem I'm going to solve with this module.
LICENSE AND COPYRIGHT
Copyright 2010 Jens Rehsack.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.