HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
ftest_TasksExecutor.py
Go to the documentation of this file.
1 #!/usr/bin/python
2 
3 
4 """
5 HCE project, Python bindings, Distributed Tasks Manager application.
6 Event objects definitions.
7 
8 @package: dtm
9 @file ftest_TaskExecutor.py
10 @author Oleksii <developers.hce@gmail.com>
11 @link: http://hierarchical-cluster-engine.com/
12 @copyright: Copyright &copy; 2013-2014 IOIX Ukraine
13 @license: http://hierarchical-cluster-engine.com/license/
14 @since: 0.1
15 """
16 
17 
18 import ConfigParser
19 import logging
20 
21 from dtm.TasksExecutor import TasksExecutor
22 from transport.ConnectionBuilderLight import ConnectionBuilderLight
23 
24 logging.basicConfig(filename="../../log/dtmd.log")
25 
26 if __name__ == '__main__':
27  config = ConfigParser.ConfigParser()
28  config.read("../../ini/dtmd.ini")
30  te.start()
The Tasks Executor object Main job of this object is a selection of scheduled tasks from the schedule...
Class hides routines of bulding connection objects.