]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Moved $_id from queuehandler to daemon, as other daemons need it too.
authorZach Copley <zach@controlyourself.ca>
Sat, 18 Jul 2009 01:07:53 +0000 (18:07 -0700)
committerZach Copley <zach@controlyourself.ca>
Sat, 18 Jul 2009 01:07:53 +0000 (18:07 -0700)
lib/daemon.php
lib/queuehandler.php

index 9d89c63e781eb2e25353c5501850510cb87cc612..231f5414e9ab44a7e66faf338ddf2fef31d9982d 100644 (file)
@@ -24,6 +24,7 @@ if (!defined('LACONICA')) {
 class Daemon
 {
     var $daemonize = true;
+    var $_id = 'generic';
 
     function __construct($daemonize = true)
     {
@@ -35,6 +36,16 @@ class Daemon
         return null;
     }
 
+    function get_id()
+    {
+        return $this->_id;
+    }
+
+    function set_id($id)
+    {
+        $this->_id = $id;
+    }
+
     function background()
     {
         $pid = pcntl_fork();
index c2ff10f32f07f4858e933b67fba8d8987c1b9e18..f11e5bd90d99de662a63e9808d81bd2f9e5b8def 100644 (file)
@@ -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;