NAME
Reflex::Base - Base class for reactive (aka, event driven) objects.
VERSION
version 0.085
SYNOPSIS
Using Moose:
package Object;
use Moose;
extends 'Reflex::Base';
...;
1;
Not using Moose:
package Object;
use warnings;
use strict;
use base 'Reflex::Base';
...;
1;
DESCRIPTION
Reflex::Base is a base class for all reactive Reflex objects, including many of the ones that notify programs of external events.
Please see Reflex::Role::Reactive, which contains the implementation and detailed documentation for this class. 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