summaryrefslogtreecommitdiff
path: root/lib/queuehandler.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-17 18:07:53 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-17 18:07:53 -0700
commit64853769b3b90e24b16dfd4d10de3f64b97fd5e5 (patch)
tree3ecdf3e2eabff395ad03cb227b16dd66fbffeec5 /lib/queuehandler.php
parent1da17f678997c0247cd6caae99e1f0de68376395 (diff)
Moved $_id from queuehandler to daemon, as other daemons need it too.
Diffstat (limited to 'lib/queuehandler.php')
-rw-r--r--lib/queuehandler.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/queuehandler.php b/lib/queuehandler.php
index c2ff10f32..f11e5bd90 100644
--- a/lib/queuehandler.php
+++ b/lib/queuehandler.php
@@ -29,7 +29,6 @@ define('QUEUE_HANDLER_HIT_IDLE', 0);
class QueueHandler extends Daemon
{
- var $_id = 'generic';
function __construct($id=null, $daemonize=true)
{
@@ -55,16 +54,6 @@ class QueueHandler extends Daemon
return strtolower($this->class_name().'.'.$this->get_id());
}
- function get_id()
- {
- return $this->_id;
- }
-
- function set_id($id)
- {
- $this->_id = $id;
- }
-
function transport()
{
return null;