class ProcessChain(threading.Thread):
    ''' class processChain '''
    def __init__(self, configFile):
        ''' constructor '''
        super(ProcessChain, self).__init__()
        self.configure = Configuration(configFile)
        #self.configure = Configuration()
        self.pluginManager = PluginManager(self.configure)

    def run(self):
        ''' thread run function '''
        self.pluginManager.setup()
        self.pluginManager.setInput('feeder', 'historicalDataFeeder', 'GOOG')
        self.pluginManager.runFeederPlugins()
Exemplo n.º 2
0
class ProcessChain(threading.Thread):
    ''' class processChain '''
    def __init__(self, configFile):
        ''' constructor '''
        super(ProcessChain, self).__init__()
        self.configure = Configuration(configFile)
        #self.configure = Configuration()
        self.pluginManager = PluginManager(self.configure)

    def run(self):
        ''' thread run function '''
        self.pluginManager.setup()
        self.pluginManager.setInput('feeder', 'historicalDataFeeder', 'GOOG')
        self.pluginManager.runFeederPlugins()
Exemplo n.º 3
0
class ProcessChain(threading.Thread):
    """ class processChain """

    def __init__(self, configFile):
        """ constructor """
        super(ProcessChain, self).__init__()
        self.configure = Configuration(configFile)
        # self.configure = Configuration()
        self.pluginManager = PluginManager(self.configure)

    def run(self):
        """ thread run function """
        self.pluginManager.setup()
        self.pluginManager.setInput("feeder", "historicalDataFeeder", "GOOG")
        self.pluginManager.runFeederPlugins()
Exemplo n.º 4
0
 def __init__(self, configFile):
     """ constructor """
     super(ProcessChain, self).__init__()
     self.configure = Configuration(configFile)
     # self.configure = Configuration()
     self.pluginManager = PluginManager(self.configure)
 def __init__(self, configFile):
     ''' constructor '''
     super(ProcessChain, self).__init__()
     self.configure = Configuration(configFile)
     #self.configure = Configuration()
     self.pluginManager = PluginManager(self.configure)