Esempio n. 1
0
 public LookupTransformation()
 {
     LookupBuffer = new CustomDestination <TSourceOutput>(this, FillBuffer);
     DefaultInitWithMatchRetrieveAttributes();
 }
Esempio n. 2
0
 public VoidDestination()
 {
     NLogger          = NLog.LogManager.GetLogger("ETL");
     _voidDestination = new CustomDestination <TInput>(this, row => {; });
 }
Esempio n. 3
0
 public VoidDestination()
 {
     _voidDestination = new CustomDestination <TInput>(this, row => {; });
 }
Esempio n. 4
0
 public CrossJoin()
 {
     InMemoryTarget             = new MemoryDestination <TInput1>(this);
     PassingTarget              = new CustomDestination <TInput2>(this, CrossJoinData);
     PassingTarget.OnCompletion = () => Buffer.Complete();
 }