Exemplo n.º 1
0
 public SourceFileReader(PipeLineContext c, ConcurrentQueue <List <string> > rows)
 {
     RowsCollection = rows;
     Context        = c;
 }
Exemplo n.º 2
0
 public COMLoader()
 {
     Context = new PipeLineContext();
 }
 public DestinationTableCreator(PipeLineContext c)
 {
     Context = c;
 }
Exemplo n.º 4
0
 public DataTypeSuggester(PipeLineContext c)
 {
     Context = c;
     this.ColumnCollection = new ConcurrentBag <ConcurrentStack <string> >();
 }
Exemplo n.º 5
0
 public Inserter(PipeLineContext context, ConcurrentQueue <List <string> > RowsCollection)
 {
     this.context        = context;
     this.RowsCollection = RowsCollection;
     done = false;
 }