Sha256: 5adcd3ab75a2c375275c40815d19fd744341a1e84bad0517a689601271b27281
Contents?: true
Size: 1.13 KB
Versions: 22
Compression:
Stored size: 1.13 KB
Contents
package Javonet::Core::Handler::CommandHandler::ArraySetItemHandler; use aliased 'Javonet::Core::Handler::PerlHandler' => 'PerlHandler'; use strict; use warnings FATAL => 'all'; use Moose; use lib 'lib'; use lib 'data_seed'; 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
22 entries across 11 versions & 1 rubygems