Batches
[Release 1.0.5-rc20-alpha7] deploying a batch abstraction
This commit is contained in:
13
Yavsc.Abstract/Interfaces/IBatch.cs
Normal file
13
Yavsc.Abstract/Interfaces/IBatch.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user