読み上げデータ送信時、応答待ちタイムアウトの設定・取得。
- Type: ushort
- Access type: read / write
- Default value: 30sec
- Range: 10sec – 60sec
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get ushort timeOut = cltComm.ReceiveAckTimeOut; //Set cltComm.ReceiveAckTimeOut = 60; |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get timeOut = cltComm.ReceiveAckTimeOut #Set cltComm.ReceiveAckTimeOut = 60 |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get time_out = clt_comm.ReceiveAckTimeOut #Set clt_comm.ReceiveAckTimeOut = 60 |