Iterator::BreakOn::Event - Build and destroy events


Iterator-BreakOn documentation  | view source Contained in the Iterator-BreakOn distribution.

Index


NAME

Top

Iterator::BreakOn::Event - Build and destroy events

VERSION

Top

This documentation refers to Iterator::BreakOn::Event version 0.1

SYNOPSIS

Top

    use Iterator::BreakOn::Event;

    my $event = Iterator::BreakOn::Event->new( { 
                    name    => 'before_location',
                    field   =>  'location',
                    value   =>  'AVILA',
                    });

    if ($event->name() eq 'AVILA') {
        # do something ...

    }

DESCRIPTION

Top

This module build and destroy event objects for the Iterator::BreakOn package.

SUBROUTINES/METHODS

Top

new( )

Create and initialize a new Iterator::BreakOn::Event object. Return a reference to the new object or undef in case of fail.

name( )

Accessor/mutator for the event name. This parameter only can be 'on_first', 'on_last', 'on_every', 'before_*', or 'after_*'; other values raise an exception.

field( )

Accessor/mutator for the field attribute of the object.

value( )

Accessor/mutator for the value attribute of the object.

DIAGNOSTICS

Top

invalid event name

DEPENDENCIES

Top

Class::Accessor

BUGS AND LIMITATIONS

Top

There are no known bugs in this module. Please report problems to the author. Patches are welcome.

AUTHOR

Top

VĂ­ctor Moral <victor@taquiones.net>

LICENSE AND COPYRIGHT

Top


Iterator-BreakOn documentation  | view source Contained in the Iterator-BreakOn distribution.