22
33namespace AutoColumnizer ;
44
5- public class AutoColumnizer : ILogLineColumnizer
5+ public class AutoColumnizer : ILogLineMemoryColumnizer
66{
77 #region ILogLineColumnizer implementation
88
@@ -28,7 +28,6 @@ public string GetDescription ()
2828 return "Automatically find the right columnizer for any file" ;
2929 }
3030
31-
3231 public int GetColumnCount ( )
3332 {
3433 throw new NotImplementedException ( ) ;
@@ -39,7 +38,7 @@ public string[] GetColumnNames ()
3938 throw new NotImplementedException ( ) ;
4039 }
4140
42- public IColumnizedLogLine SplitLine ( ILogLineColumnizerCallback callback , ILogLine line )
41+ public IColumnizedLogLineMemory SplitLine ( ILogLineMemoryColumnizerCallback callback , ILogLineMemory logLine )
4342 {
4443 throw new NotImplementedException ( ) ;
4544 }
@@ -54,12 +53,12 @@ public int GetTimeOffset ()
5453 throw new NotImplementedException ( ) ;
5554 }
5655
57- public DateTime GetTimestamp ( ILogLineColumnizerCallback callback , ILogLine line )
56+ public DateTime GetTimestamp ( ILogLineMemoryColumnizerCallback callback , ILogLineMemory logLine )
5857 {
5958 throw new NotImplementedException ( ) ;
6059 }
6160
62- public void PushValue ( ILogLineColumnizerCallback callback , int column , string value , string oldValue )
61+ public void PushValue ( ILogLineMemoryColumnizerCallback callback , int column , string value , string oldValue )
6362 {
6463 }
6564
0 commit comments