The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Reflex::Object - Base class for reactive (aka, event driven) objects.

VERSION

version 0.010

SYNOPSIS

Using Moose:

        package Object;
        use Moose;
        extends 'Reflex::Object';

        ...;

        1;

Not using Moose:

        package Object;
        use warnings;
        use strict;
        use base 'Reflex::Object';

        ...;

        1;

DESCRIPTION

Reflex::Object is a base class for all Reflex objects, including many of the ones that notify programs of external events.

Please see Reflex::Role::Object for actual documentation. Everything that Reflex::Object does comes from that role. The documentation is kept with the role in order for them to be near each other. It's so romantic!

SEE ALSO

Moose::Manual::Concepts

Reflex Reflex::Role::Object

"ACKNOWLEDGEMENTS" in Reflex "ASSISTANCE" in Reflex "AUTHORS" in Reflex "BUGS" in Reflex "BUGS" in Reflex "CONTRIBUTORS" in Reflex "COPYRIGHT" in Reflex "LICENSE" in Reflex "TODO" in Reflex