def __init__(self, numThread=10):

        MTRunner.__init__(self, name='lcg_output_downloader', data=Data(
            collection=[]), algorithm=LCGOutputDownloadAlgorithm())

        self.keepAlive = True
        self.numThread = numThread
Example #2
0
    def __init__(self, numThread=10):

        MTRunner.__init__(self,
                          name='lcg_output_downloader',
                          data=Data(collection=[]),
                          algorithm=LCGOutputDownloadAlgorithm())

        self.keepAlive = True
        self.numThread = numThread
    def __init__(self, numThread=10):

        logger.debug('starting new MTRunner instance: %s.', "saga_file_transfer_manager")

        MTRunner.__init__(self, name='saga_file_transfer_manager', 
                          data=Data(collection=[]), 
                          algorithm=SAGAFileTransferAlgorithm())
        
        self.keepAlive = True
        self.numThread = numThread
Example #4
0
    def __init__(self, numThread=10):

        logger.debug('starting new MTRunner instance: %s.',
                     "saga_file_transfer_manager")

        MTRunner.__init__(self,
                          name='saga_file_transfer_manager',
                          data=Data(collection=[]),
                          algorithm=SAGAFileTransferAlgorithm())

        self.keepAlive = True
        self.numThread = numThread