NAME
EO::Message - definition of a message class
SYNOPSIS
use EO::Message;
my $message = EO::Message->new();
$message->selector( 'foo' );
$message->arguments( [qw(one two three)] );
$message->send_to( $object );
$message->send_to( 'Class' );
my $selector = $message->selector;
my $arguments = $message->arguments;
DESCRIPTION
EO::Message
provides a representation of a message sent to an object in the system.