9e710effc1
Error email updates Piscal communication error handling Empty page for terms of service
14 lines
380 B
C#
14 lines
380 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 CleanupLeafProcess(PiscalLeafInput leafInput);
|
|
}
|
|
}
|