16 lines
408 B
C#
16 lines
408 B
C#
using System;
|
|
|
|
namespace XplorePlane.Services.MainViewport
|
|
{
|
|
public interface IDetectorFramePipelineService : IDisposable
|
|
{
|
|
int AcquireQueueCount { get; }
|
|
int ProcessQueueCount { get; }
|
|
int AcquireQueueCapacity { get; }
|
|
int ProcessQueueCapacity { get; }
|
|
int ProcessEveryNFrames { get; }
|
|
|
|
event EventHandler<DetectorFrame> ProcessFrameDequeued;
|
|
}
|
|
}
|