| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
AnyEvent::Subprocess::Done::Delegate::State - thread state through the job/run/done lifecycle
version 1.102912
Allows state to be passed from Job -> Run -> Done.
Returns the state received from the Run object.
Jonathan Rockway <jrockway@cpan.org>
This software is copyright (c) 2011 by Jonathan Rockway.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
package AnyEvent::Subprocess::Done::Delegate::State; BEGIN { $AnyEvent::Subprocess::Done::Delegate::State::VERSION = '1.102912'; } # ABSTRACT: thread state through the job/run/done lifecycle use Moose; with 'AnyEvent::Subprocess::Done::Delegate'; has 'state' => ( is => 'ro', isa => 'HashRef', required => 1 ); __PACKAGE__->meta->make_immutable; 1;
__END__