isReady

[ Function ]

public static isReady(): boolean;

Returns the state of the server communication.

Parameters

Name

Type

Description

-

-

-

Return value

Type

Description

boolean

State value of the server communication.

isReady 1:

Available from version 14

Example - JavaScript

var ready = TcHmi.Server.isReady();
if(ready === true){
    // System is ready.
} else{
    // System is not ready.
}