This function is used in Python Scripting.

Description

Reads the value of the Tags at the given paths. Will "block" until the read operation is complete or times out. Meaning, execution of the calling script will pause until this function finishes. This is useful in cases where the Tag read must complete before further lines in the same script should execute. 

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax

system.tag.readBlocking(tagPaths, [timeout])

  • Parameters

String | List tagPaths - Either a string of a single Tag path, or a list of strings Tag paths to read from. If no property is specified in a path, the Value property is assumed.

Integer timeout - How long to wait in milliseconds before the read operation times out. This parameter is optional, and defaults to 45000 milliseconds if not specified. [optional]

  • Returns

List - A list of QualifiedValue objects corresponding to the Tag paths. See Scripting Object Reference.

  • Scope

Gateway, Vision Client, Perspective Session

Code Examples
Code Snippet - Read From Multiple Tags
# Specify the paths.
paths = ["[default]Folder/Tag_A","[default]Folder/Tag_B"]

# Send the reads off.
values = system.tag.readBlocking(paths)

# Here we can examine each value.
for i in range(len(values)):
	print "Tag at Path: %s\n Had a value of %s" % (paths[i], values[i].value)
Code Examples
Code Snippet - Read From a Single Tag
# Specify the paths.
path = ["[default]Folder/Tag_A"]

# Send the reads off.
# Function returns a list of qualified values, one qualified value for every tag path we are reading
qualifiedValues= system.tag.readBlocking(path)
value = qualifiedValues[0] # extract the qualified value from this list, there should only be 1 because we are reading a single tag value

print value.value # prints out the value of the Tag A
print value.quality # prints out the quality of Tag A
print value.timestamp # prints out the timestamp of Tag A's value
Keywords

system tag readBlocking, tag.readBlocking, read tag, read a tag, tag read