in reply to Re^2: Dispatch table within package question
in thread Dispatch table within package question

that's fine, unfortunately, I can't get that to compile... Maybe you were thinking something like:
my $method = $message_types{$type}; $self->$method(@args);
Which I agree looks more like a method call and avoids having to pass $self manually -- Brian