Title: Server/Client Acknowledgment Post by: wbroyles on October 19, 2012, 03:13:40 PM I am using the RTCGroupFunction and RTCFunction components. Ver 6.04 with Delphi XE2.
Is there an acknowledgment from the Client to the Server after a data block was received okay? In other words, how does the Server know everything was transmitted without any problems? Background - I have some very large datasets to sync and need to break the data into blocks. I want to update each block of data as it is processed. I do realize I can create a submit call to acknowledge each block, but was looking for a inheirant method. Thanks wade Title: Re: Server/Client Acknowledgment Post by: D.Tkalcec (RTC) on October 19, 2012, 03:55:28 PM No, the Client does NOT send "reception acknowledgment messages" to the Server. If you want the Server to know that the Client has received a "block of data", the Client has to do this manually (for example, by making a new remote function call).
Best Regards, Danijel Tkalcec Title: Re: Server/Client Acknowledgment Post by: wbroyles on October 19, 2012, 05:25:10 PM Thanks
Wade |