Help for this page

Select Code to Download


  1. or download this
    ...
    my $method = $dispatch{ $command };
    $self->$method( );
    ...
    
  2. or download this
    my $method = $self->can( $dispatch( $command ) );
    unless( defined $method ) {
    ...
      return;
    }
    $self->$method( );