Front page | perl.cvs.p5ee |
Postings from April 2013
[svn:p5ee] r15615 - in p5ee/trunk/App-WorkQueue/lib/App: . WorkQueue
From:
spadkins
Date:
April 1, 2013 21:53
Subject:
[svn:p5ee] r15615 - in p5ee/trunk/App-WorkQueue/lib/App: . WorkQueue
Message ID:
20130401215331.A4B9C184B9C@xx12.develooper.com
Author: spadkins
Date: Mon Apr 1 14:53:31 2013
New Revision: 15615
Modified:
p5ee/trunk/App-WorkQueue/lib/App/WorkQueue.pm
p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Memory.pm
p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Repository.pm
Log:
added copyright. cleaned up inaccurate doc entries about exceptions.
Modified: p5ee/trunk/App-WorkQueue/lib/App/WorkQueue.pm
==============================================================================
--- p5ee/trunk/App-WorkQueue/lib/App/WorkQueue.pm (original)
+++ p5ee/trunk/App-WorkQueue/lib/App/WorkQueue.pm Mon Apr 1 14:53:31 2013
@@ -105,8 +105,6 @@
* Signature: _init($named)
* Param: $named {} [in]
* Return: void
- * Throws: App::Exception
- * Since: 0.01
Sample Usage:
@@ -217,8 +215,6 @@
* Signature: $q->push($entry);
* Param: $entry HASH/ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -453,8 +449,6 @@
* Signature: $entry = $q->acquire();
* Param: $sort_spec string
* Return: $entry HASH/ARRAY
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -615,8 +609,6 @@
* Signature: $q->release($entry, $columns, $values);
* Param: $entry HASH/ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -752,8 +744,6 @@
* Signature: $q->unacquire($entry);
* Param: $entry HASH/ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -836,8 +826,6 @@
* Param: $params HASH
* Param: $options HASH
* Return: @entries
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -918,8 +906,6 @@
* Param: $columns ARRAY
* Param: $values ARRAY
* Return: @entries
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1036,8 +1022,6 @@
* Signature: $q->print($fh);
* Param: $fh FILEHANDLE
* Return: void
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1066,8 +1050,6 @@
* Signature: $q->print_constraints($fh);
* Param: $fh FILEHANDLE
* Return: void
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1113,8 +1095,6 @@
* Param: $format string
* Param: $columns ARRAY
* Return: void
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1202,8 +1182,6 @@
* Signature: $q->num_entries($status);
* Param: $status string
* Return: void
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1275,8 +1253,6 @@
* Param: $count_attrib string
* Param: $limit_attrib string
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1321,8 +1297,6 @@
* Param: $counts HASH
* Param: $limits HASH
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1375,8 +1349,6 @@
* Signature: $q->clear_constraints();
* Param: void
* Return: void
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1403,8 +1375,6 @@
* Param: $attrib string
* Param: $counts HASH
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1479,7 +1449,6 @@
* Signature: $colidx = $q->_colidx();
* Param: void
* Return: $colidx HASH
- * Since: 0.01
$colidx = $q->_colidx();
$idx = $colidx->{$column}; # get the column index for a named $column
@@ -1511,8 +1480,6 @@
* Signature: $q->_global_resources_exist();
* Param: $constraints ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1558,8 +1525,6 @@
* Param: $entry ARRAY/HASH
* Param: $constraints ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1670,8 +1635,6 @@
* Param: $entry ARRAY/HASH
* Param: $constraints ARRAY
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1754,8 +1717,6 @@
* Param: $op [push,acquire,release,unacquire]
* Param: $entry ARRAY/HASH
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1881,8 +1842,6 @@
* Signature: $q->_resource_key($entry);
* Param: $entry ARRAY/HASH
* Return: undef
- * Throws: App::Exception::WorkQueue
- * Since: 0.01
Sample Usage:
@@ -1957,7 +1916,6 @@
* Signature: $service_type = App::WorkQueue->service_type();
* Param: void
* Return: $service_type string
- * Since: 0.01
$service_type = $serializer->service_type();
@@ -1967,6 +1925,7 @@
=head1 ACKNOWLEDGEMENTS
+ * (c) 2010 Stephen Adkins
* Author: Stephen Adkins <spadkins@gmail.com>
* License: This is free software. It is licensed under the same terms as Perl itself.
Modified: p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Memory.pm
==============================================================================
--- p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Memory.pm (original)
+++ p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Memory.pm Mon Apr 1 14:53:31 2013
@@ -103,6 +103,7 @@
=head1 ACKNOWLEDGEMENTS
+ * (c) 2010 Stephen Adkins
* Author: Stephen Adkins <spadkins@gmail.com>
* License: This is free software. It is licensed under the same terms as Perl itself.
Modified: p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Repository.pm
==============================================================================
--- p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Repository.pm (original)
+++ p5ee/trunk/App-WorkQueue/lib/App/WorkQueue/Repository.pm Mon Apr 1 14:53:31 2013
@@ -693,6 +693,7 @@
=head1 ACKNOWLEDGEMENTS
+ * (c) 2010 Stephen Adkins
* Author: Stephen Adkins <spadkins@gmail.com>
* License: This is free software. It is licensed under the same terms as Perl itself.
-
[svn:p5ee] r15615 - in p5ee/trunk/App-WorkQueue/lib/App: . WorkQueue
by spadkins