-
-
21 Jan 2022 02:02:39 UTC
- Distribution: Tie-Timely
- Module version: 1.024
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (0)
- Testers (307 / 0 / 0)
- Kwalitee
Bus factor: 1- 100.00% Coverage
- License: artistic_2
- Perl: v5.8.0
- Activity
24 month- Tools
- Download (8.64KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Carp
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Tie::Timely - Time out scalar values
SYNOPSIS
use Tie::Timely; my $interval = 5; tie my $scalar, 'Amelia', $interval; # now $scalar is 'Amelia' sleep 6; # now the interval has elapsed and the value is forgotten # set the value again and it starts a new interval $scalar = 'Llama';
DESCRIPTION
This module creates a tied scalar that forgets its value after the interval that you specify. The next time you set the value it resets the interval;
SOURCE AVAILABILITY
This source is in Github:
https://github.com/briandfoy/tie-timely/
AUTHOR
brian d foy,
<brian.d.foy@gmail.com>
COPYRIGHT AND LICENSE
Copyright © 2005-2022, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.
Module Install Instructions
To install Tie::Timely, copy and paste the appropriate command in to your terminal.
cpanm Tie::Timely
perl -MCPAN -e shell install Tie::Timely
For more information on module installation, please visit the detailed CPAN module installation guide.