<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

IRunnable

public interface 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(); } }