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
dtm.TasksDataTable Namespace Reference

Classes

class  TasksDataTable
 

Functions

def __init__ (self)
 

Variables

 Base = declarative_base()
 Class describes structures of task item used in TaskDataManager module. More...
 
string __tablename__ = "tasks_data_table"
 
dictionary __table_args__ = {'mysql_engine': 'MyISAM'}
 
 id = sqlalchemy.Column(sqlalchemy.BigInteger, primary_key=True)
 
 data = sqlalchemy.Column(sqlalchemy.Text, unique=False, index=False)
 

Detailed Description

Created on Mar 10, 2014

@package: dtm
@author: scorp
@link: http://hierarchical-cluster-engine.com/
@copyright: Copyright © 2013-2014 IOIX Ukraine
@license: http://hierarchical-cluster-engine.com/license/
@since: 0.1

Function Documentation

◆ __init__()

def dtm.TasksDataTable.__init__ (   self)

Definition at line 24 of file TasksDataTable.py.

24  def __init__(self):
25  pass
26 
27 
def __init__(self)
constructor
Definition: UIDGenerator.py:19

Variable Documentation

◆ __table_args__

dictionary dtm.TasksDataTable.__table_args__ = {'mysql_engine': 'MyISAM'}
private

Definition at line 19 of file TasksDataTable.py.

◆ __tablename__

string dtm.TasksDataTable.__tablename__ = "tasks_data_table"
private

Definition at line 18 of file TasksDataTable.py.

◆ Base

dtm.TasksDataTable.Base = declarative_base()

Class describes structures of task item used in TaskDataManager module.

Definition at line 16 of file TasksDataTable.py.

◆ data

dtm.TasksDataTable.data = sqlalchemy.Column(sqlalchemy.Text, unique=False, index=False)

Definition at line 21 of file TasksDataTable.py.

◆ id

dtm.TasksDataTable.id = sqlalchemy.Column(sqlalchemy.BigInteger, primary_key=True)

Definition at line 20 of file TasksDataTable.py.