wfm.AdminGetLockInfo

This job returns information about workflow database tables locked by the system.

1. Input Parameters

Name Type Required Description

OrganisationsId

STRING

Yes

ID of the organization.

2. Return Value

(INT): 0 = Job successful, otherwise error code.

3. Output Parameters

Name Type Dependency Description

LockItems

BASE64

Information about workflow database tables in XML format.

Structure of LockItems
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<LockItems>
  <LockItem Id="" Name="" State="" LockTime="" ServerId="" ThreadId=""/>
  <LockItem Id="" Name="" State="" LockTime="" ServerId="" ThreadId=""/>
</LockItems>
Detailed description of LockItem attributes:
Id (INT) — ID of the database table.
Name (STRING) — Name of the database table.
State (INT) — 1 = database table is locked, otherwise 0.
LockTime (INT) — Timestamp (when the table was locked).
ServerId (INT) — ID of the server that locked the table.
ThreadId (INT) — ID of the thread that locked the table.

4. See Also