Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sendpage::pagequeue(3pm) [debian man page]

Sendpage::PageQueue(3pm)				User Contributed Perl Documentation				  Sendpage::PageQueue(3pm)

NAME
PageQueue.pm - extends the Queue module, adding the Page module smarts SYNOPSIS
$pqueue=Sendpage::PageQueue($config); # read waiting pages while ($fh=$pqueue->getPage($db)) { # build up $page @stuff=$pqueue->pullPageFromFile($db,$fh); $page=Sendpage::Page->new(@stuff); # do something to change $page # write changes back to queue $pqueue->writePage($page); $pqueue->fileDone(); } # add a new page $fh=$pqueue->addPage($page); DESCRIPTION
This is a module for use in sendpage(1). BUGS
Obviously, needs more docs. AUTHOR
Kees Cook <kees@outflux.net> SEE ALSO
perl(1), sendpage(1), Sendpage::KeesConf(3), Sendpage::KeesLog(3), Sendpage::Modem(3), Sendpage::PagingCentral(3), Sendpage::Page(3), Sendpage::Recipient(3), Sendpage::Queue(3) COPYRIGHT
Copyright 2000 Kees Cook. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2008-01-03 Sendpage::PageQueue(3pm)

Check Out this Related Man Page

Sendpage::Queue(3pm)					User Contributed Perl Documentation				      Sendpage::Queue(3pm)

NAME
Queue.pm - implements a simple directory-based file queue SYNOPSIS
$queue=Sendpage::Queue->new($dir); while ($queue->ready()) { $filename=$queue->file(); $fh=$queue->getReadyFile(); if ($can_remove_file) { $queue->fileToss(); } else { $queue->fileDone(); } } # open a new queue file $fh=$queue->getNewFile(); # ... do things to the file handle here # release the file $queue->doneNewFile(); DESCRIPTION
This is a module for use in sendpage(1). BUGS
Need to write more docs. AUTHOR
Kees Cook <kees@outflux.net> SEE ALSO
perl(1), sendpage(1), Sendpage::KeesConf(3), Sendpage::KeesLog(3), Sendpage::Modem(3), Sendpage::PagingCentral(3), Sendpage::PageQueue(3), Sendpage::Page(3), Sendpage::Recipient(3) COPYRIGHT
Copyright 2000 Kees Cook. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2008-01-03 Sendpage::Queue(3pm)
Man Page

10 More Discussions You Might Find Interesting

1. AIX

map Page Down and Page up to ] and [

how do I map Page Down and Page up to ] and [ in my terminal using the .exrc file. Currently its not working and the use of ^F and ^B doesn't attract me at all. (0 Replies)
Discussion started by: buddy_amazing
0 Replies

2. AIX

High Page Faults

Sorry my poor english In 570 pseries nmon shows excessive page faults, ascents of something more than 30000 Page faults. System: AIX 5.2 ML5 Processor Type: PowerPC_POWER5 Number Of Processors: 2 Processor Clock Speed: 1656 MHz CPU Type: 64-bit Kernel Type: 64-bit Memory Size: 2816 MB ... (1 Reply)
Discussion started by: daviguez
1 Replies

3. UNIX for Dummies Questions & Answers

figure it out

hi there i am new to this site and this linux and unix stuff so kind of plz help me out hoe to start the stuff.... (1 Reply)
Discussion started by: cool_dude
1 Replies

4. Shell Programming and Scripting

get everything but last line

Hi there I have a file eg stuff stuff stuff stuff EOF how do i grep out everything apart from the last line, is there an equivalent of tail -1 that instead of getting the last line, gets me everything but the last line so i can output it to a file im sure this is really... (3 Replies)
Discussion started by: hcclnoodles
3 Replies

5. UNIX for Advanced & Expert Users

p570 Capabilities

Hi there. I've been tasked with making a new design for our Unix systems :eek: Now the question I have is; How many LPARs can a p570 hold WITHOUT using a VIO Server. Many Thanks Kees (1 Reply)
Discussion started by: KeesH
1 Replies

6. AIX

Problem with Queue of the Printer

Guy's This is the Queue of the printer ... >lpstat -pTOPPRINTER Queue Dev Status Job Files User PP % Blks Cp Rnk ------- ----- --------- --- ------------------ ---------- ---- -- ----- --- --- TOPPRIN @TOPP DOWN QUEUED ... (1 Reply)
Discussion started by: ITHelper
1 Replies

7. Shell Programming and Scripting

Processing a file in perl

Qspace ABC Queue doCol: true Queue order: fifo Queue setCol: red Queue order: fifo Qspace XYZ Queue getCol: true Queue order: fifo I need to append every line in this file with Qspace & Queue, so that final o/p shall look like this, Qspace: ABC Queue: doCol Qspace: ABC Queue: doCol... (2 Replies)
Discussion started by: deo_kaustubh
2 Replies

8. UNIX for Dummies Questions & Answers

LPI practice work

Hello everyone! Im Andrew and i'm studying for LPI 1, 2 Does anybody knows where can i find good and actual stuff for practice? if it is posible for free :-\ maybe testking or stuff like that. I want to take the first examn but im not sure if i have to study so much more. It is true... (4 Replies)
Discussion started by: andriusman
4 Replies

9. AIX

AIX 6.1: Releasing Memory and Page Space

Hi everyone, i have a question about the Memory Management in AIX 6.1. I have - 128 GB RAM and - 70 GB Page Space. The application i am running on this machine is doing some operations in perl. These are done only once a day and uses both memory and paging space. My problem... (1 Reply)
Discussion started by: Haichao
1 Replies

10. UNIX for Dummies Questions & Answers

Probably some stupid mistake...

Hi everyone ! I have a file wich look like this : >Sis01 > Sis02 ... >Sis44 I want to separe each paragraphe in a different file, so I decide to use the "FOR" loop + sed. for f in {01..44} do (5 Replies)
Discussion started by: sluvah
5 Replies