public DataProcessor(ITableMapper tableMapper,
                      ITableDataBatchWriter batchWriter = null,
                      int batchSize = 10000)
 {
     TableMap    = new TableMap();
     TableMapper = tableMapper;
     BatchSize   = batchSize;
     BatchWriter = batchWriter;
 }
예제 #2
0
 public DataProcessor(ITableMapper tableMapper,
     ITableDataBatchWriter batchWriter = null,
     int batchSize = 10000)
 {
     TableMap = new TableMap();
     TableMapper = tableMapper;
     BatchSize = batchSize;
     BatchWriter = batchWriter;            
 }