TsgcWSPClient_Dataset › Events › OnAfterSynchronize
Fires when the server signals that the Synchronize batch has ended.
property OnAfterSynchronize: TNotifyEvent;
// TNotifyEvent = procedure(Sender: TObject) of object
—
Raised when the server sends the "synchronize end" marker after streaming the full Dataset back to the client. Use it to re-enable UI controls, call EnableControls, refresh visual grids or signal that the local Dataset is now in sync with the server.
procedure TForm1.oProtocolAfterSynchronize(Sender: TObject);
begin
FDMemTable1.EnableControls;
end;