| Log-Unrotate documentation | Contained in the Log-Unrotate distribution. |
Log::Unrotate::Cursor::Null - dummy cursor
version 1.25
This is a dummy cursor, commits to it go nowhere.
Create null cursor.
| Log-Unrotate documentation | Contained in the Log-Unrotate distribution. |
package Log::Unrotate::Cursor::Null; BEGIN { $Log::Unrotate::Cursor::Null::VERSION = '1.25'; } use strict; use warnings;
use base qw(Log::Unrotate::Cursor); use overload '""' => sub { 'Null' };
sub new { return bless {} => shift; }
sub read { return } sub commit { return } sub clean { return } 1;