| CatalystX-Usul documentation | Contained in the CatalystX-Usul distribution. |
CatalystX::Usul::Response - Response class for running external programs
0.3.$Revision: 576 $
use CatalystX::Usul::Response; my $result = CatalystX::Usul::Response->new();
Response class returned by run_cmd in CatalystX::Usul::Utils and popen in CatalystX::Usul::Utils
This class defined these attributes:
True if external commands core dumped
Processed output from the command
Signal that caused the program to terminate
The standard error output from the command
The standard output from the command
Basic constructor
None
There are no known incompatibilities in this module
There are no known bugs in this module. Please report problems to the address below. Patches are welcome
Peter Flanigan, <Support at RoxSoft.co.uk>
Copyright (c) 2008 Peter Flanigan. All rights reserved
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic
This program is distributed in the hope that it will be useful, but WITHOUT WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE
| CatalystX-Usul documentation | Contained in the CatalystX-Usul distribution. |
# @(#)$Id: Response.pm 576 2009-06-09 23:23:46Z pjf $ package CatalystX::Usul::Response; use strict; use warnings; use version; our $VERSION = qv( sprintf '0.3.%d', q$Rev: 576 $ =~ /\d+/gmx ); use parent qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors( qw(core out sig stderr stdout) ); sub new { my $self = shift; return bless { core => 0, out => q(), sig => undef, stderr => q(), stdout => q() }, ref $self || $self; } 1; __END__
# Local Variables: # mode: perl # tab-width: 3 # End: