Help for this page

Select Code to Download


  1. or download this
    my %message_types = (
       type1 => sub { $self->sub_1(@_); },
    ...
    );
    
    $message_types{$type}->(@args);
    
  2. or download this
    my %message_types = (
       type1 => 'sub_1',
    ...
    
    $method = $message_types{$type};
    $self->$method(@args);
    
  3. or download this
    my %message_types = (
       type1 => sub { $object->sub_1(@_); },
    ...
       # It's a method.
       $self->$func(@args);
    }