[Release 1.0.5-rc20-alpha7]

deploying a batch abstraction
This commit is contained in:
2018-06-17 23:34:17 +02:00
parent e85b012184
commit 854ba3987b
10 changed files with 642 additions and 7 deletions

View File

@ -0,0 +1,13 @@
using System;
namespace Yavsc.Abstract.Interfaces
{
public interface IBatch<TInput, TOutput>
{
string WorkingDir { get; set; }
Action<TOutput> ResultHandler { get; }
void Launch(TInput Input);
string HtmlLogPath { get; set; }
}
}