AnyEvent::Subprocess::Job::Delegate - role that delegates on the Job class must implement


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

Index


Code Index:

NAME

Top

AnyEvent::Subprocess::Job::Delegate - role that delegates on the Job class must implement

VERSION

Top

version 1.102912

AUTHOR

Top

Jonathan Rockway <jrockway@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package AnyEvent::Subprocess::Job::Delegate;
BEGIN {
  $AnyEvent::Subprocess::Job::Delegate::VERSION = '1.102912';
}
# ABSTRACT: role that delegates on the Job class must implement
use Moose::Role;

with 'AnyEvent::Subprocess::Delegate';

requires 'build_run_delegates';
requires 'child_setup_hook';
requires 'child_finalize_hook';
requires 'parent_setup_hook';
requires 'parent_finalize_hook';
requires 'build_code_args';
requires 'receive_child_result';
requires 'receive_child_error';

1;




__END__