Skip to content

exodist/MooseX-LeakCheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME
    MooseX-LeakCheck - Check for leaky attributes

DESCRIPTION
    Define an attribute that you know should be the only remaining ref to an
    object when your instance is destroyed. On destruction verify the
    attribute is also destroyed.

SYNOPSIS
        package Foo;
        use MooseX::LeakCheck;

        has bar => (
            is => 'ro',
            default => sub {[]},
            leak_check => 1,
        );

        has baz => (
            is => 'ro',
            default => sub {[]},
            leak_check => sub {
                my $self = shift;
                my ( $attr_name, $ref ) = @_;
                ...
            }
        );

        has boo => (
            is => 'ro',
            default => sub {[]},
            # Defaults to no
            leak_check => 0,
        );

        1;

ATTRIBUTE PROPERTIES
    leak_check => $BOOL
    leak_check => sub { ... }
        Turn on leak checking for the attribute when set to true. Generates
        a warning when a leak is detected. Alternatively you may provide a
        coderef callback to run when a leak is detected.

        The coderef gets the following args: ( $self, $attr_name,
        \$self->{$attr_name})

AUTHORS
    Chad Granum exodist7@gmail.com

COPYRIGHT
    Copyright (C) 2012 Chad Granum

    MooseX::LeakCheck is free software; Standard perl licence.

    MooseX::LeakCheck is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license for
    more details.

About

Check for leaky attributes in Moose

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages