The session
interface object and its
queueOutputData
function will be removed in a future
release.
To access a data acquisition device, use a DataAcquisition
object with its functions and properties instead. You can replace the
queueOutputData
function with one of the
following:
Use preload
if the
DataAcquisition
is not running and you do not
want to start it at this time. This is necessary before starting
background operations.
Use write
if you want to immediately start the
DataAcquisition
with the data you are writing
(foreground), or if the DataAcquisition
is already
running and you want to add output data (background).
For more information, see Transition Your Code from Session to DataAcquisition Interface.