|
NAMEJLog - Perl extension for the jlog journaled queueing systemDESCRIPTIONParent class for JLog::Reader and JLog::Writer. You probably want to be looking at those instead. JLog is a durable, reliable, publish-and-subscribe queueing system.INTERFACESubscriber ManagementA JLog must have subscribers to be functional. Without a subscriber, a queue may be purged, as there are no interested readers. For this reason it is highly recommended that you add a subscriber before writing to a log.add_subscriber $w->add_subscriber( $name, [ $flag ] ); Add a subscriber to the JLog queue.
remove_subscriber $w->remove_subscriber ( $name ); Remove a subscriber to the JLog queue.
list_subscribers @subscribers = $w->list_subscribers; Return a list of all the subscribers to a JLog queue. Internalsalter_journal_sizeThis function is a stub provided for backwards compatibility. It will always return false.
raw_size $size = $w->raw_size; The size of the existing journal (including checkpointed but unpurged messages in the current journal file), in bytes. SEE ALSOJLog::Reader JLog::WriterCOPYRIGHT AND LICENSECopyright (C) 2006-2008 by Message Systems, Inc.
Visit the GSP FreeBSD Man Page Interface. |