コード例 #1
0
 public Dumper(string bzipPath, DumpAction act, PerfCounter counter)
 {
     _action = act;
     _bzipReader = new BzipReader(bzipPath, _action, counter);
     _action.Decoder = _bzipReader;
     _action._notify = _bzipReader;
 }
コード例 #2
0
 public Dumper(string bzipPath, DumpAction act, PerfCounter counter)
 {
     _action         = act;
     _bzipReader     = new BzipReader(bzipPath, _action, counter);
     _action.Decoder = _bzipReader;
     _action._notify = _bzipReader;
 }
コード例 #3
0
ファイル: Indexer.cs プロジェクト: karino2/wikipediaconv
 public Indexer(string path)
 {
     _action         = new IndexerAction(path);
     _bzipReader     = new BzipReader(path, _action);
     _action._notify = _bzipReader;
 }