Test2::Harness::Util::File::Stream(3pm) | User Contributed Perl Documentation | Test2::Harness::Util::File::Stream(3pm) |
Test2::Harness::Util::File::Stream - Utility class for manipulating a file that serves as an output stream.
Subclass of Test2::Harness::File that streams the contents of a file, even if the file is still being written.
use Test2::Harness::Util::File::Stream; my $stream = Test2::Harness::Util::File::Stream->new(name => 'path/to/file'); # Read some lines my @lines = $stream->poll; ... # Read more lines, if any. push @lines => $stream->poll;
See Test2::Harness::File for additional attributes.
These can be passed in as construction arguments if desired.
See Test2::Harness::File for additional methods.
The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.
Copyright 2020 Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/
2023-10-04 | perl v5.36.0 |