TsgcWSPClient_DatasetEvents › OnAfterSynchronize

OnAfterSynchronize Event

Fires when the server signals that the Synchronize batch has ended.

Syntax

property OnAfterSynchronize: TNotifyEvent;
// TNotifyEvent = procedure(Sender: TObject) of object

Default Value

Remarks

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.

Example

procedure TForm1.oProtocolAfterSynchronize(Sender: TObject);
begin
  FDMemTable1.EnableControls;
end;

Back to Events