QuickFix.FileLog.OnEvent C# (CSharp) 메소드

OnEvent() 공개 메소드

public OnEvent ( string s ) : void
s string
리턴 void
        public void OnEvent(string s)
        {
            lock (sync_)
            {
                file_.WriteLine("<event> " + s);
                file_.Flush();
            }
        }

Usage Example

예제 #1
0
 /// FIXME do real logging
 public void Log(string s)
 {
     if (log_ != null)
     {
         log_.OnEvent(s);
     }
 }
All Usage Examples Of QuickFix.FileLog::OnEvent