public Dumper(string bzipPath, DumpAction act, PerfCounter counter)
 {
     _action = act;
     _bzipReader = new BzipReader(bzipPath, _action, counter);
     _action.Decoder = _bzipReader;
     _action._notify = _bzipReader;
 }
 public Dumper(string bzipPath, DumpAction act, PerfCounter counter)
 {
     _action         = act;
     _bzipReader     = new BzipReader(bzipPath, _action, counter);
     _action.Decoder = _bzipReader;
     _action._notify = _bzipReader;
 }
Exemple #3
0
 public Indexer(string path)
 {
     _action         = new IndexerAction(path);
     _bzipReader     = new BzipReader(path, _action);
     _action._notify = _bzipReader;
 }