CogAcqFifoImagingDevice GetFifoState Method Cognex VisionPro 9.8
Returns the instantaneous state of the fifo.

Namespace: Cognex.VisionPro.ImagingDevice.Implementation.Internal
Assembly: Cognex.VisionPro.ImagingDevice (in Cognex.VisionPro.ImagingDevice.dll) Version: 75.1.0.0
Syntax

public virtual void GetFifoState(
	out int numPending,
	out int numReady,
	out bool busy
)

Parameters

numPending
Type: System Int32 

The number of acquisitions in the pending state. This is the number of acquisitions requested by StartAcquire  for which acquisition has not started. To achieve frame rate acquisition in manual trigger mode, the FIFO must always have one or more pending acquisitions.

numReady
Type: System Int32 

The number of acquisition requests ready to be completed.

busy
Type: System Boolean 

True if the oldest outstanding acquisition is waiting for a trigger signal or is acquiring an image. For master/slave acquisitions, it becomes true only after the master and all slaves are ready for acquisition.

Implements

ICogAcqFifo GetFifoState(Int32 , Int32 , Boolean )
Remarks

Returns the current state of the acquisition FIFO.

See Also