| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
AnyEvent::Subprocess::Done::Delegate::Handle - store leftover wbuf/rbuf from running Handle
version 1.102912
Attributes to store leftover data in the handle's rbuf or wbuf.
Return the residual data.
Check for existence of residual data.
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::Handle; BEGIN { $AnyEvent::Subprocess::Done::Delegate::Handle::VERSION = '1.102912'; } # ABSTRACT: store leftover wbuf/rbuf from running Handle use Moose; use namespace::autoclean; with 'AnyEvent::Subprocess::Done::Delegate'; has 'rbuf' => ( is => 'ro', isa => 'Str', predicate => 'has_rbuf', ); has 'wbuf' => ( is => 'ro', isa => 'Str', predicate => 'has_wbuf', ); __PACKAGE__->meta->make_immutable; 1;
__END__