Files
LeafWeb/Core/Remote/IPiscalClient.cs
T
2017-01-26 08:36:54 -05:00

15 lines
431 B
C#

using System.Collections.Generic;
namespace LeafWeb.Core.Remote
{
public interface IPiscalClient
{
string Host { get; }
void RunLeafInput(PiscalLeafInput leafInput);
PiscalStatus GetLeafInputStatus(PiscalLeafInput leafInput);
IEnumerable<PiscalLeafOutputFile> RetrieveLeafOutput(PiscalLeafInput leafInput);
void KillLeafProcess(PiscalLeafInput leafInput);
void CleanupLeafProcess(PiscalLeafInput leafInput);
}
}