Example #1
0
    def setup(self):
        # Run the subclass setup
        self._setup()

        # Run the plugins
        PluginManager.runLayerSetup(self)
        
        # Flush any inputs/outputs to disk.
        self.flushIO()
Example #2
0
 def afterExecute(self):
     self._afterExecute()
     PluginManager.runAfterExecute(self)
Example #3
0
 def beforeExecute(self):
     self._beforeExecute()
     PluginManager.runBeforeExecute(self)
Example #4
0
 def setup(self):
     self._setup()
     PluginManager.runSetup(self)
Example #5
0
 def afterInit(self):
     self._afterInit()
     PluginManager.runAfterInit(self)
Example #6
0
from app import PluginManager, Application, BlueprintRunner, loadScript

from job import Job
from layer import Layer, Task, SetupTask, DependType, Depend

PluginManager.loadAllPlugins()
Example #7
0
from app import PluginManager, Application, BlueprintRunner, loadScript

from job import Job
from layer import Layer, Task, SetupTask, DependType, Depend


PluginManager.loadAllPlugins()

Example #8
0
 def afterExecute(self):
     self._afterExecute()
     PluginManager.runAfterExecute(self)
Example #9
0
 def beforeExecute(self):
     self._beforeExecute()
     PluginManager.runBeforeExecute(self)
Example #10
0
 def setup(self):
     self._setup()
     PluginManager.runSetup(self)
Example #11
0
 def afterInit(self):
     self._afterInit()
     PluginManager.runAfterInit(self)