AnyEvent::Subprocess::Done::Delegate::State - thread state through the job/run/done lifecycle


AnyEvent-Subprocess documentation Contained in the AnyEvent-Subprocess distribution.

Index


Code Index:

NAME

Top

AnyEvent::Subprocess::Done::Delegate::State - thread state through the job/run/done lifecycle

VERSION

Top

version 1.102912

DESCRIPTION

Top

Allows state to be passed from Job -> Run -> Done.

ATTRIBUTES

Top

state

Returns the state received from the Run object.

AUTHOR

Top

Jonathan Rockway <jrockway@cpan.org>

COPYRIGHT AND LICENSE

Top


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__