読み上げデータ送信時に、読み上げ完了通知の送信要否をサーバーに要求することができる。送信不要を指定した場合は、読み上げ完了通知は送信されない。この指定は、データ送信毎に指定する。未指定の場合は送信必要が送信される。
- Type: HzSpCompletionNoticeNecessity
- Access type: read / write
- Default value: Need
- Range: Need, NoNeed
Remarks
対応バージョン: SDK 2.1.0, Haruzira 2.2.0以降
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get HzSpCompletionNoticeNecessity val = cltComm.ReqSendDataCompletionNoticeNecessity; //Set cltComm.ReqSendDataCompletionNoticeNecessity = HzSpCompletionNoticeNecessity.NoNeed |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get val = cltComm.ReqSendDataCompletionNoticeNecessity #Set cltComm.ReqSendDataCompletionNoticeNecessity = HzSpCompletionNoticeNecessity::NoNeed |
Python
1 2 3 4 5 6 7 8 |
from haruzirasdk import hz_client_tcp_communication as hzcomm clt_comm = hz_comm.ClientTcpCommunication() #Get val = clt_comm.ReqSendDataCompletionNoticeNecessity #Set clt_comm.ReqSendDataCompletionNoticeNecessity = hzcomm.HzSpCompletionNoticeNecessity.NoNeed.value |