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