GSF.Diagnostics.LogSubscriptionFileWriter.OnNewFileComplete C# (CSharp) Method

OnNewFileComplete() private method

private OnNewFileComplete ( string fileName ) : void
fileName string
return void
        private void OnNewFileComplete(string fileName)
        {
            var e = NewFileComplete;
            if (e != null)
            {
                try
                {
                    e(fileName);
                }
                catch (Exception)
                {

                }
            }
        }
    }