| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
AnyEvent::Subprocess::Done::Delegate::CaptureHandle - store the output generated by a handle while the process was running
version 1.102912
The captured output, as a string.
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::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__