コード例 #1
0
 protected internal virtual void OnIndexOutputClosed(FSIndexOutput io)
 {
     StaleFiles.Add(io.Name);
 }
コード例 #2
0
ファイル: FSDirectory.cs プロジェクト: zhuthree/lucenenet
 protected virtual void OnIndexOutputClosed(FSIndexOutput io)
 {
     // LUCENENET specific: No such thing as "stale files" in .NET, since Flush(true) writes everything to disk before
     // our FileStream is disposed.
     //m_staleFiles.Add(io.name);
 }
コード例 #3
0
 protected virtual void OnIndexOutputClosed(FSIndexOutput io)
 {
     m_staleFiles.Add(io.name);
 }
コード例 #4
0
ファイル: FSDirectory.cs プロジェクト: wwb/lucenenet
 protected internal virtual void OnIndexOutputClosed(FSIndexOutput io)
 {
     StaleFiles.Add(io.Name);
 }