requestedBy

Type: Process

The read-only requestedBy property of the Lock class is a read-only property that is set to the process that submitted the lock request.

The code fragment in the following example shows the use of the requestedBy property.

foreach lock in locksArray do
    listBoxQueue.addItem(lock.requestedBy.node.system.name.String);
endforeach;