Fusion.LogListener.Flush C# (CSharp) 메소드

Flush() 공개 메소드

public Flush ( ) : void
리턴 void
		public virtual void Flush ()
		{
		}

Usage Example

예제 #1
0
파일: Log.cs 프로젝트: ttou73/IronStar
 /// <summary>
 /// Removes Log listener.
 /// </summary>
 /// <param name="listener"></param>
 public static void RemoveListener(LogListener listener)
 {
     lock (lockObj) {
         listeners.Remove(listener);
         listener.Flush();
     }
 }
All Usage Examples Of Fusion.LogListener::Flush