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

Search results for "Tie::Handle"

Tie::Handle - base class definitions for tied handles River stage five • 11292 direct dependents • 32664 total dependents

This module provides some skeletal methods for handle-tying classes. See perltie for a list of the functions required in tying a handle to a package. The basic Tie::Handle package provides a "new" method, as well as methods "TIEHANDLE", "PRINT", "PRI...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC - Search in distribution

Tie::Handle::CSV - easy access to CSV files River stage zero No dependents

"Tie::Handle::CSV" makes basic access to CSV files easier. Features Auto-parse CSV line When you read from the tied handle, the next line from your CSV is parsed and returned as a data structure ready for access. In the example below $csv_line is a h...

DANBOO/Tie-Handle-CSV-0.15 - 22 Jul 2013 21:35:25 UTC - Search in distribution

Tie::Handle::Log - Tied filehandle that just logs operations River stage one • 1 direct dependent • 1 total dependent

This class implements tie interface for filehandle but does nothing except logging the operation with Log::ger. It's basically used for testing, benchmarking, or documentation only....

PERLANCAR/Tie-Handle-Log-0.001 - 12 May 2019 01:38:27 UTC - Search in distribution

Tie::Handle::Argv - A base class for tying Perl's magic ARGV handle River stage zero No dependents

This is a base class for tied filehandles that reproduces the behavior of Perl's "ARGV" filehandle, more commonly known as the magic "<>" "readline" operator. By itself, this class attempts to reproduce the behavior of the magical "ARGV" and its asso...

HAUKEX/File-Replace-Inplace-0.18 - 22 Jan 2023 13:14:14 UTC - Search in distribution

Tie::Handle::Base - A base class for tied filehandles River stage one • 4 direct dependents • 4 total dependents

"Tie::Handle::Base" is a base class for tied filehandles. It is similar to Tie::StdHandle, but provides a few more features, and is compatible down to Perl 5.8.1. It tries to be as transparent as possible (one limitation is that "sysread" and "syswri...

HAUKEX/Tie-Handle-Base-0.18 - 22 Jan 2023 13:05:59 UTC - Search in distribution

Tie::Handle::HTTP - Tie class for doing HTTP range requests for read calls. River stage zero No dependents

This module sets up a tied filehandle and associates it with a single HTTP address where each read on the filehandle will be performed as an HTTP Range request. Keepalives are used when possible, but requests will not be buffered in any way....

HACHI/Tie-Handle-HTTP-0.02 - 28 Mar 2006 01:36:15 UTC - Search in distribution

Tie::Alias::Handle - required by Tie::Alias::TIEHANDLE River stage zero No dependents

This module holds a single error message, suggesting that the user append an ampersand to their mode string to duplicate a handle: handles already have a robust aliasing mechanism....

DAVIDNICO/Tie-Alias-Handle-0.01 - 26 Nov 2002 03:23:55 UTC - Search in distribution

Tie::Handle::Flock - exclusive locking write handle River stage zero No dependents

IHEFFNER/Tie-Handle-Flock-0.01 - 13 Apr 2009 14:46:02 UTC - Search in distribution

Thread::Tie::Handle - default class for tie-ing handles to threads River stage one • 2 direct dependents • 5 total dependents

Helper class for Thread::Tie. See documentation there....

LNATION/Thread-Tie-0.15 - 14 Nov 2019 13:37:28 UTC - Search in distribution
  • Thread::Tie - tie variables into a thread of their own

Tie::Handle::LogAny - Filehandle to log to Log::Any River stage one • 1 direct dependent • 1 total dependent

This module ties a filehandle to Log::ger logger object. For sure a silly module, just a proof of concept....

PERLANCAR/Tie-Handle-LogAny-0.001 - 08 Aug 2017 12:14:19 UTC - Search in distribution

Tie::Handle::LogGer - Filehandle to log to Log::ger River stage one • 1 direct dependent • 1 total dependent

This module ties a filehandle to Log::ger logger object. For sure a silly module, just a proof of concept....

PERLANCAR/Tie-Handle-LogGer-0.001 - 08 Aug 2017 12:14:31 UTC - Search in distribution

Tie::Handle::Offset - Tied handle that hides the beginning of a file River stage two • 2 direct dependents • 27 total dependents

This modules provides a file handle that hides the beginning of a file. After opening, the file is positioned at the offset location. "seek()" and "tell()" calls are modified to preserve the offset. For example, "tell($fh)" will return 0, though the ...

DAGOLDEN/Tie-Handle-Offset-0.004 - 24 Apr 2018 09:48:46 UTC - Search in distribution

Tie::Handle::Scalar - Perl extension for tieing a scalar to a filehandle. River stage two • 2 direct dependents • 17 total dependents

WARNING - This ONLY works with perl version 5.6.0< or above. This may be due to interfaces to handles in older versions of perl not being complete ;) Tie::Handle::Scalar allows you to tie a scalar to a filehandle. Supported and unsupported/untested m...

ANWILL/Tie-Handle-Scalar-0.1 - 02 Jul 2001 09:53:58 UTC - Search in distribution

Tie::Handle::TtyRec - write a ttyrec River stage one • 1 direct dependent • 1 total dependent

A ttyrec is a format used for recording terminal sessions. Notably, practically all NetHack games are recorded using ttyrecs. ttyrecs include precise timing data and can be a little fiddly. This module lets you focus on your application, instead of m...

SARTAK/Tie-Handle-TtyRec-0.04 - 06 Mar 2012 16:59:15 UTC - Search in distribution

Tie::Simple::Handle River stage two • 8 direct dependents • 91 total dependents

HANENKAMP/Tie-Simple-1.04 - 28 Nov 2015 17:24:27 UTC - Search in distribution
  • Tie::Simple - Variable ties made easier: much, much, much easier...

Tie::Handle::TailSwitch - Tie to Logfile::Tail::Switch River stage one • 2 direct dependents • 2 total dependents

This module ties a filehandle to Logfile::Tail::Switch object....

PERLANCAR/Tie-Handle-TailSwitch-0.001 - 09 Jun 2017 06:59:13 UTC - Search in distribution

MemHandle::Tie - The package which ties the MemHandle to memory. River stage zero No dependents

This should not be used except by MemHandle. It provides functions for tie-ing a FILEHANDLE. See "Tying FileHandles" in perltie for more detail....

SCR/MemHandle-0.07 - 12 Feb 2012 18:36:51 UTC - Search in distribution

Tie::Handle::FileWriteRotate - Filehandle tie to write to autorotated file with File::Write::Rotate River stage one • 2 direct dependents • 2 total dependents

This module ties a filehandle to File::Write::Rotate object. I first wrote this module to tie STDERR, so that warnings/errors are logged to file instead of terminal (with autorotation, for good behavior)....

PERLANCAR/Tie-Handle-FileWriteRotate-0.040 - 27 Jun 2019 13:13:08 UTC - Search in distribution

Tie::DirHandle - definitions for tied directory handles River stage zero No dependents

This module provides filehandle-like read access to directory handles. There are not many available methods, because directory handles are read-only. The only methods are "TIEHANDLE", "READLINE", "DESTROY", and "rewind". To tie a filehandle to a dire...

PINYAN/Tie-DirHandle-1.10 - 08 Apr 1999 13:35:08 UTC - Search in distribution

IO::Mux::Handle - Virtual handle used with the IO::Mux multiplexer. River stage zero No dependents

"IO::Mux::Handle" objects are used to create virtual handles that are multiplexed through an IO::Mux object....

PATL/IO-Mux-0.08 - 21 Jan 2006 17:54:48 UTC - Search in distribution
436 results (0.244 seconds)