Relativity.DataExchange.Process.ProcessEventWriter
Represents an abstract object that writes output events to a file. This class cannot be inherited.
namespace Relativity.DataExchange.Process
{
internal sealed class ProcessEventWriter : IProcessEventWriter, IDisposable
{
public string File { get; }
public bool HasEvents { get; }
public ProcessEventWriter(IFileSystem fileSystem);
public void Close();
public void Dispose();
public void Save(string targetFile);
public void Write(ProcessEventDto dto);
}
}