| Data-Conveyor documentation | Contained in the Data-Conveyor distribution. |
Data::Conveyor::Ticket::Processor::Conveyor - Stage-based conveyor-belt-like ticket handling system
version 1.103130
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::Ticket::Processor::Conveyor; BEGIN { $Data::Conveyor::Ticket::Processor::Conveyor::VERSION = '1.103130'; } # ABSTRACT: Stage-based conveyor-belt-like ticket handling system use parent 'Class::Scaffold::Storable'; __PACKAGE__->mk_framework_object_accessors(ticket => 'ticket') ->mk_scalar_accessors(qw(poll_delegate)) ->mk_boolean_accessors(qw(transactional_authority)); # the poll delegate allows the upper service layer to interrupt processing # by throwing an exception, if it thinks it is necessary. use constant DEFAULTS => (transactional_authority => 1); sub run { my $self = shift; my $previous_stage = ''; while ($self->ticket->stage ne $previous_stage) { last if $self->ticket->stage eq $self->delegate->FINAL_TICKET_STAGE; $previous_stage = $self->ticket->stage; if ( $self->poll_delegate && $self->poll_delegate->can('callback')) { $self->poll_delegate->callback($self->ticket); } # We need to set the ticket to active, because it won't have been # open()ed - we just process a ticket from start to end, without # repeatedly writing and re-reading it. $self->ticket->stage->set_active; $self->delegate->make_obj('ticket_dispatcher') ->new(transactional_authority => $self->transactional_authority) ->dispatch($self->ticket); } $self->ticket->store; } 1; __END__