using System.Collections.Generic; namespace HeuristicLab.PluginInfrastructure { public interface IRunner { /// /// Assemblies which the child process needs to load. /// IEnumerable AssembliesToLoad { get; set; } /// /// Method to run the runner. /// void Run(); void Pause(); void Resume(); void Cancel(); } }