isReady
[ Function ]
public static isReady(): boolean;Returns the state of the server communication.
Parameters
Name | Type | Description |
|---|---|---|
- | - | - |
Return value
Type | Description |
|---|---|
State value of the server communication. |
![]() | Available from version 14 |
Example - JavaScript
var ready = TcHmi.Server.isReady();
if(ready === true){
// System is ready.
} else{
// System is not ready.
}