2018-06-17 23:34:17 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Abstract.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IBatch<TInput, TOutput>
|
|
|
|
|
{
|
|
|
|
|
string WorkingDir { get; set; }
|
|
|
|
|
|
|
|
|
|
Action<TOutput> ResultHandler { get; }
|
|
|
|
|
void Launch(TInput Input);
|
2018-06-22 17:47:57 +02:00
|
|
|
string LogPath { get; set; }
|
2018-06-17 23:34:17 +02:00
|
|
|
}
|
|
|
|
|
}
|