Gets or sets a timeout value for waiting response messasges.
- Type: ushort
- Access type: read / write
- Default value: 30sec
- Range: 10sec – 60sec
Examples
C#
|
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get ushort timeOut = cltComm.ReceiveAckTimeOut; //Set cltComm.ReceiveAckTimeOut = 60; |
Ruby
|
cltComm = ClientTcpCommunication.new #Get timeOut = cltComm.ReceiveAckTimeOut #Set cltComm.ReceiveAckTimeOut = 60 |
Python
|
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get time_out = clt_comm.ReceiveAckTimeOut #Set clt_comm.ReceiveAckTimeOut = 60 |