Sha256: 6c529e31e030c935a27ec52c1b1de75e847b38d8cc47900b3dfe70fce893d49f
Contents?: true
Size: 1.04 KB
Versions: 21
Compression:
Stored size: 1.04 KB
Contents
package Javonet::Core::Handler::CommandHandler::ArraySetItemHandler; use strict; use warnings FATAL => 'all'; use lib 'lib'; use Moose; use Nice::Try; use aliased 'Javonet::Core::Exception::Exception' => 'Exception'; extends 'Javonet::Core::Handler::CommandHandler::AbstractCommandHandler'; sub new { my $class = shift; my $self = { required_parameters_count => 3 }; return bless $self, $class; } sub process { my ($self, $command) = @_; try { my $current_payload_ref = $command->{payload}; my @cur_payload = @$current_payload_ref; my $parameters_length = @cur_payload; if ($parameters_length < $self->{required_parameters_count}) { die Exception->new("Exception: ArraySetItemHandler parameters mismatch"); } my $array = $command->{payload}[0]; my @indexes = $command->{payload}[1]; my $value = $command->{payload}[2]; @{$array}[@indexes] = $value; return 0; } catch ( $e ) { return Exception->new($e); } } no Moose; 1;
Version data entries
21 entries across 18 versions & 1 rubygems