Files

11 lines
344 B
C#
Raw Permalink Normal View History

using System.Threading;
using System.Threading.Channels;
using System.Threading.Tasks;
namespace MainShell.Process
{
public interface IWaferCaptureExecutor
{
Task<WaferScanExecutionSummary> ExecuteAsync(WaferDiePositionContext context, ChannelWriter<WaferCaptureFrame> frameWriter, CancellationToken cancellationToken);
}
}