AnyEvent::Subprocess::Done::Delegate::CaptureHandle - store the output generated by a handle while the process was running


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

Index


Code Index:

NAME

Top

AnyEvent::Subprocess::Done::Delegate::CaptureHandle - store the output generated by a handle while the process was running

VERSION

Top

version 1.102912

ATTRIBUTES

Top

output

The captured output, as a string.

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::CaptureHandle;
BEGIN {
  $AnyEvent::Subprocess::Done::Delegate::CaptureHandle::VERSION = '1.102912';
}
# ABSTRACT: store the output generated by a handle while the process was running

use Moose;

with 'AnyEvent::Subprocess::Done::Delegate';

has 'output' => ( is => 'ro', isa => 'Str', required => 1 );

__PACKAGE__->meta->make_immutable;

1;




__END__