Class
Check Workflow Manager Server statuses.
Refer to ManagerFactory.getManager to get a reference to this class.
Inheritance: WorkflowServerManagerBaseManager
Methods
Method | Returns | Notes |
---|---|---|
Promise<ServerStatus> | Checks the status of Workflow Manager Server and returns the license capability level. |
checkStatus
Class MethodcheckStatus(): Promise<ServerStatus>
Checks the status of Workflow Manager Server and returns the license capability level.
const status: ServerStatus = await workflowServerManager.checkStatus();
const success: boolean = status.success;
const hasAdvancedLicense: boolean = status.hasAdvancedLicense;
Returns
Promise<ServerStatus>
The Workflow Manager Server status.