The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

XAS::Logmon::Input::File - A class to read log files.

SYNOPSIS

 use XAS::Logmon::Input::File;

 my $input = XAS::Logmon::Input::File->new(
    -filename = File('/home/kesteb/tukwils.lg')
 );
 
 while (my $line = $input->get()) {
    
    
 }
 

DESCRIPTION

This method will read the entire contents of a file.

METHODS

get

This method will return a line from the file.

SEE ALSO

XAS::Logmon::Input::Tail
XAS::Logmon
XAS

AUTHOR

Kevin L. Esteb, <kevin@kesteb.us>

COPYRIGHT AND LICENSE

Copyright (c) 2012-2015 Kevin L. Esteb

This is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0. For details, see the full text of the license at http://www.perlfoundation.org/artistic_license_2_0.