Skip to main content
Version: V3 (Ignition 8.3)

system.mes.oee.getCalculationConfigImportQueueSize

Description

Returns the current number of OEE Calculation Configuration import operations waiting in the async background queue. A value greater than zero means an import is still in progress.

Permissions

This method requires the OEE.READ.GET permission.

Syntax

system.mes.oee.getCalculationConfigImportQueueSize()

Parameters

This method takes no parameters.

Returns

Returns an Integer representing the current queue size.

Code Examples

import time

while system.mes.oee.getCalculationConfigImportQueueSize() > 0:
print("Import still in progress...")
time.sleep(2)

print("Import complete")