11 lines
344 B
C#
11 lines
344 B
C#
|
|
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);
|
||
|
|
}
|
||
|
|
}
|