Package glue :: Module workflow :: Class Workflow
[hide private]
[frames] | no frames]

Class Workflow

source code

object --+
         |
        Workflow

Instance Methods [hide private]
 
__iadd__(self, node)
Add a node to this workflow
source code
 
__init__(self, name='my_workflow')
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
add_node(self, node)
Add a node to this workflow
source code
 
save(self, filename)
Write this workflow to DAX file
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__iadd__(self, node)

source code 
Add a node to this workflow

This function adds nodes to the workflow. It also determines
parent/child relations from the DataStorage inputs to this job. 

Parameters
----------
node : Node
    A node that should be exectuded as part of this workflow.

__init__(self, name='my_workflow')
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

add_node(self, node)

source code 
Add a node to this workflow

This function adds nodes to the workflow. It also determines
parent/child relations from the DataStorage inputs to this job. 

Parameters
----------
node : Node
    A node that should be exectuded as part of this workflow.