summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-05-17 09:50:56 +0000
committerfukachan <fukachan>2002-05-17 09:50:56 +0000
commit14541de5f9f553901053d4e2658e9e8cdce28ce3 (patch)
tree38c87cbf3ea70e627708109e22383eb7f03d9f0b /fml
parentea643577e019f308760e0cf6f40f3d2ff1d72a28 (diff)
downloadfml8-14541de5f9f553901053d4e2658e9e8cdce28ce3.tar.gz
fml8-14541de5f9f553901053d4e2658e9e8cdce28ce3.tar.bz2
fml8-14541de5f9f553901053d4e2658e9e8cdce28ce3.zip
update document on new() arguments
Diffstat (limited to 'fml')
-rw-r--r--fml/lib/File/CacheDir.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/fml/lib/File/CacheDir.pm b/fml/lib/File/CacheDir.pm
index adfe2989..49437bcf 100644
--- a/fml/lib/File/CacheDir.pm
+++ b/fml/lib/File/CacheDir.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: CacheDir.pm,v 1.13 2002/01/13 13:35:25 fukachan Exp $
+# $FML: CacheDir.pm,v 1.14 2002/05/17 05:03:28 fukachan Exp $
#
package File::CacheDir;
@@ -23,7 +23,9 @@ File::CacheDir - IO operations to ring buffer which consists of files
use File::CacheDir;
$obj = new File::CacheDir {
- directory => '/some/where'
+ directory => '/some/where' # mandatory
+ sequence_file_name => '.seq', # optional
+ modulus => 128, # optional
};
$fh = $obj->open;
print $fh "some message";