| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
AnyEvent::Subprocess::Done::Delegate::Timeout - done delegate for a job that can time out
version 1.102912
True if the job was killed because it ran out of time.
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::Timeout; BEGIN { $AnyEvent::Subprocess::Done::Delegate::Timeout::VERSION = '1.102912'; } # ABSTRACT: done delegate for a job that can time out use Moose; use namespace::autoclean; with 'AnyEvent::Subprocess::Done::Delegate'; has 'timed_out' => ( is => 'ro', isa => 'Bool', required => 1, ); __PACKAGE__->meta->make_immutable; 1;
__END__