| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
Data::Conveyor::YAML::Active::Payload::Item - Stage-based conveyor-belt-like ticket handling system
version 1.103130
FIXME
FIXME
FIXME
FIXME
FIXME
FIXME
See perlmodinstall for information and options on installing Perl modules.
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Data-Conveyor.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Data-Conveyor/.
The development version lives at http://github.com/hanekomu/Data-Conveyor and may be cloned from git://github.com/hanekomu/Data-Conveyor. Instead of sending patches, please fork this project using the standard git and github infrastructure.
This software is copyright (c) 2004 by Marcel Gruenauer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
use 5.008; use strict; use warnings; package Data::Conveyor::YAML::Active::Payload::Item; BEGIN { $Data::Conveyor::YAML::Active::Payload::Item::VERSION = '1.103130'; } # ABSTRACT: Stage-based conveyor-belt-like ticket handling system use parent 'Class::Scaffold::YAML::Active::Hash'; __PACKAGE__->mk_scalar_accessors(qw(__payload_item)); # generic; subclass should override with the proper # mk_framework_object_accessors() sub run_plugin { my $self = shift; $self->SUPER::run_plugin(@_); $self->clear___payload_item; $self->__payload_item($self->make_payload_item); $self->populate_payload_item; $self->__payload_item; } # Might be empty if a subclass uses an autovivifying framework_object sub make_payload_item { } sub populate_payload_item { my $self = shift; # Some args are set on the payload object, others are passed to the # payload's data object $self->set_payload_item_properties; $self->populate_payload_item_data; } sub move_payload_item_property_from_hash { my ($self, $property) = @_; return unless $self->__hash_exists($property); $self->__payload_item->$property($self->__hash->{$property}); $self->__hash_delete($property); } sub set_payload_item_properties { my $self = shift; $self->move_payload_item_property_from_hash($_) for qw/command exception_container implicit instruction_container/; } sub populate_payload_item_data { my $self = shift; local $Class::Value::SkipChecks = 1; while (my ($key, $value) = each %{ $self->__hash }) { $self->__payload_item->data->$key($value); } } 1; __END__