IRunnable
Represents an abstract object that performs some runnable process.
using System;
namespace Relativity.DataExchange.Process
{
public interface IRunnable
{
Guid ProcessId { get; set; }
void Start();
}
}