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