summaryrefslogtreecommitdiff
path: root/framework/core.php
diff options
context:
space:
mode:
authorxue <>2005-12-24 21:20:19 +0000
committerxue <>2005-12-24 21:20:19 +0000
commit56b28c33fdee6169c9bfd77f4f9d8e9d349e0b7b (patch)
tree5e352bc9fd78b3cd75a2a5db41abedea776c140a /framework/core.php
parent8e9204c0047f3bd369d46af68197bcc4ef9a0ba2 (diff)
Added TService base class.
Diffstat (limited to 'framework/core.php')
-rw-r--r--framework/core.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/framework/core.php b/framework/core.php
index 405e5574..1196d3c4 100644
--- a/framework/core.php
+++ b/framework/core.php
@@ -356,6 +356,59 @@ class TModule extends TComponent implements IModule
}
/**
+ * TService class.
+ *
+ * TService implements the basic methods required by IService and may be
+ * used as the basic class for application services.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System
+ * @since 3.0
+ */
+abstract class TService extends TComponent implements IService
+{
+ /**
+ * @var string service id
+ */
+ private $_id;
+
+ /**
+ * Initializes the service and attaches {@link run} to the RunService event of application.
+ * This method is required by IService and is invoked by application.
+ * @param TApplication application
+ * @param TXmlElement module configuration
+ */
+ public function init($application,$config)
+ {
+ $application->attachEventHandler('RunService',array($this,'run'));
+ }
+
+ /**
+ * @return string id of this service
+ */
+ public function getID()
+ {
+ return $this->_id;
+ }
+
+ /**
+ * @param string id of this service
+ */
+ public function setID($value)
+ {
+ $this->_id=$value;
+ }
+
+ /**
+ * Runs the service.
+ */
+ public function run()
+ {
+ }
+}
+
+/**
* PradoBase class.
*
* PradoBase implements a few fundamental static methods.