IProcessEventWriter
Represents an abstract object that writes output events to a file.
using System;
namespace Relativity.DataExchange.Process
{
public interface IProcessEventWriter : IDisposable
{
string File { get; }
bool HasEvents { get; }
void Close();
void Save(string targetFile);
void Write(ProcessEventDto dto);
}
}