public Builder(IFeedService feedService, IFeedRunService feedRunService, IRunner runner, IFileContentProcessor fileProcessor, ILogger logger)
 {
     FeedRunService = feedRunService;
     FeedService    = feedService;
     Runner         = runner;
     _fileProcessor = fileProcessor;
     Log            = logger;
 }
 public BaseOutputProcessor(
     IFileContentProcessor fileContentProcessor,
     IDataService dataService,
     ILogger logger)
 {
     _fileProcessor = fileContentProcessor;
     _dataService   = dataService;
     _logger        = logger;
 }
 public OutputInstructionProcessor(
     IFileContentProcessor fileContentProcessor,
     IDestinationProcessor <OutputInstruction> destinationProcessor,
     IDataService dataService,
     ILogger logger)
     : base(fileContentProcessor, dataService, logger)
 {
     _destinationProcessor = destinationProcessor;
 }
示例#4
0
 public PackageTokeniser(
     IFileContentProcessor fileContentProcessor, 
     IProgressNotifier progressNotifier, 
     IRenameFileProcessor renameFileProcessor, 
     IBinaryFileFilter binaryFileFilter)
 {
     this.fileContentProcessor = fileContentProcessor;
     this.binaryFileFilter = binaryFileFilter;
     this.progressNotifier = progressNotifier;
     this.renameFileProcessor = renameFileProcessor;
 }
示例#5
0
 public PackageTokeniser(
     IFileContentProcessor fileContentProcessor,
     IProgressNotifier progressNotifier,
     IRenameFileProcessor renameFileProcessor,
     IBinaryFileFilter binaryFileFilter)
 {
     this.fileContentProcessor = fileContentProcessor;
     this.binaryFileFilter     = binaryFileFilter;
     this.progressNotifier     = progressNotifier;
     this.renameFileProcessor  = renameFileProcessor;
 }
示例#6
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor, [ImportMany] IEnumerable<IFunctionTokenizer> FunctionTokenizers)
 {
     this.renameFileProcessor = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
     this.functionTokenizers = FunctionTokenizers;
 }
示例#7
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor)
 {
     this.renameFileProcessor = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
 }
示例#8
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor, [ImportMany] IEnumerable <IFunctionTokenizer> FunctionTokenizers)
 {
     this.renameFileProcessor  = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
     this.functionTokenizers   = FunctionTokenizers;
 }
示例#9
0
 public SftpProcessor(FtpConfiguration configuration, IFileContentProcessor fileProcessor, ILogger logger)
 {
     _ftpConfiguration = configuration;
     _fileProcessor    = fileProcessor;
     _logger           = logger;
 }
示例#10
0
 public TemplateTokeniser(IRenameFileProcessor renameFileProcessor, IFileContentProcessor fileContentProcessor)
 {
     this.renameFileProcessor  = renameFileProcessor;
     this.fileContentProcessor = fileContentProcessor;
 }
示例#11
0
 public ServiceBusProcessor(ServiceBusConfiguration configuration, IFileContentProcessor fileProcessor, ILogger logger)
 {
     _configuration = configuration;
     _logger        = logger;
     _fileProcessor = fileProcessor;
 }
示例#12
0
 public NetworkFolderProcessor(NetworkConfiguration configuration, IFileContentProcessor fileProcessor, ILogger logger)
 {
     _configuration = configuration;
     _fileProcessor = fileProcessor;
     _logger        = logger;
 }