Section 9: TSP command reference Series 2600B System SourceMeter® instrument Reference Manual
9-50 2600BS-901-01 Rev. F/August 2021
dataqueue.CAPACITY
This constant is the maximum number of entries that you can store in the data queue.
Usage
count = dataqueue.CAPACITY
The variable that is assigned the value of dataqueue.CAPACITY
Details
This constant always returns the maximum number of entries that can be stored in the data queue.
Example
MaxCount = dataqueue.CAPACITY
while dataqueue.count < MaxCount do
dataqueue.add(1)
end
print("There are " .. dataqueue.count .. " items in the data queue")
This example fills the data queue until it is full and prints the number of items in the queue.
Output:
There are 128 items in the data queue
Also see
dataqueue.add() (on page 9-49)
dataqueue.clear() (on page 9-50)
dataqueue.count (on page 9-51)
dataqueue.next() (on page 9-52)
Using the data queue for real-time communication (on page 8-94)
dataqueue.clear()
This function clears the data queue.
Usage
dataqueue.clear()
Details
This function forces all dataqueue.add() commands that are in progress to time out and deletes all
data from the data queue.