Calls to this method should always be followed by a call to the method of type TEnableServer.
| type
|
| TDisableServer = procedure; stdcall;
|
Parameters
None
Example (Delphi)
| procedure TMaintenanceThread.Execute;
|
| begin
|
| DoDisableServer;
|
| try
|
| DoFlushBuffers;
|
| ValidateTheRepository;
|
| finally
|
| DoEnableServer;
|
| end;
|
| end;
|
© 1995-2011 Quality Software Components Ltd