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
"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