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
SchedulerTask.py
Go to the documentation of this file.
1 '''
2 @package: dtm
3 @author igor
4 @link: http://hierarchical-cluster-engine.com/
5 @copyright: Copyright © 2013-2014 IOIX Ukraine
6 @license: http://hierarchical-cluster-engine.com/license/
7 @since: 0.1
8 '''
9 
10 
12 class SchedulerTask(object):
13 
14 
17  def __init__(self):
18  self.id = None
19  self.rTime = 0
20  self.rTimeMax = 0
21  self.state = None
22  self.priority = 0
23  self.strategy = ""
24  self.tries = 0
Class describes structures of task item used in Scheduler.
def __init__(self)
constructor initialise all class variable of None more information in DTM_application_architecture ...