![]() |
![]()
| ![]() |
![]()
NAMEDevel::LeakGuard::Object::State - Scoped object leak checking VERSIONThis document describes Devel::LeakGuard::Object::State version 0.06 SYNOPSISuse Devel::LeakGuard::Object::State; # Later my $leakstate = Devel::LeakGuard::Object::State->new( on_leak => 'die' ); My::Thing->leaky(); $leakstate->done; DESCRIPTIONA "Devel::LeakGuard::Object::State" captures the current leakstate of object allocations within a program. When "done" is called the saved allocation leakstate is compared with the current leakstate and any discrepancies are reported. INTERFACE"new"Create a new "Devel::LeakGuard::Object::State". A number of options may be supplied. To see the full list refer to "leakguard" in Devel::LeakGuard::Object. "done"Call "done" at the end of the area of code to be leak-checked. If allocation imbalances are detected the action taken depends on the options passed to "new". By default a warning is displayed. AUTHORAndy Armstrong "<andy@hexten.net>" LICENCE AND COPYRIGHTCopyright (c) 2009, Andy Armstrong "<andy@hexten.net>". This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
|