Files
LeafWeb/Core/Remote/IPiscalClient.cs
T
poprhythm 05b2bfefb1 Display results from Piscal processing
Error handling for Piscal processing
2016-03-07 11:47:55 -05:00

14 lines
413 B
C#

using System.Collections.Generic;
namespace LeafWeb.Core.Remote
{
public interface IPiscalClient
{
void RunLeafInputFile(PiscalLeafInputFile file);
PiscalStatus GetLeafInputFileStatus(PiscalLeafInputFile file);
IEnumerable<PiscalLeafOutputFile> RetrieveLeafOutput(PiscalLeafInputFile file);
void CleanupLeafProcess(PiscalLeafInputFile file);
string GetErrorMessage(PiscalLeafInputFile file);
}
}