NAME
Pid::File::Flock - PID file operations
VERSION
Version 0.02
SYNOPSIS
You can use module generic way:
use Pid::File::Flock;
...
Pid::File::Flock->new;
Pid::File::Flock->new('file');
Pid::File::Flock->new(debug=>1, dir=>'/tmp');
or in simplified form:
use Pid::File::Flock qw(:auto);
use Pid::File::Flock qw(:auto path=file);
use Pid::File::Flock qw(:auto :debug dir=/tmp);
you can mix both too:
use Pid::File::Flock qw(:debug dir=/tmp);
...
Pid::File::Flock->new(ext=>'.old');
IMPORT LIST
You can provide 'flag' options ('debug','quiet') like an import tag: use Pid::File::Flock qw(:debug :quiet)
Valued options can be specified with key=value form: use Pid::File::Flock qw(dir=/tmp ext=.old)
Pseudo tag ':auto' create lock object implicitly.
GENERIC USAGE
new( $path, %options )
Generic constructor
Supported options:
dir => 'directory'
Base directory for pid file (by default File::Spec::tmpdir called).
name => 'basename'
Name for pid file (by default like a script self).
ext => 'extension'
Extension for pid file ('.pid' by default).
debug => 1
Switch debug mode on (some information via STDERR).
quiet => 1
Switch quiet mode on (don't warn about staled pid files).
INTERNAL ROUTINES
You haven't call these methods directly.
import
Process 'fake' import list.
acquire
Acquiring lock, called by new
constructor.
attempt
Attempting acquire lock with additional checks.
release
Unlink pid file, handle will be closed a bit later, during object destructing.
DESTROY
Lock object destructor.
END
Undefine module lexical variable to force DESTROY invoking.
AUTHOR
Oleg A. Mamontov, <oleg at mamontov.net>
BUGS
Please report any bugs or feature requests to bug-pid-file-flock at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pid-File-Flock. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Pid::File::Flock
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
COPYRIGHT & LICENSE
Copyright 2009 Oleg A. Mamontov, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.