disableByteProgressEvents

disableByteProgressEvents();

The disableByteProgressEvents method of the JadeDatabaseAdmin class disables the notification of operation and progress events reporting the number of bytes of a file that have been backed up. Operation and progress events are disabled by default. For details about operation and progress events, see "JadeDatabaseAdmin Class Event Notifications" and "DbFile Class Event Notifications", elsewhere in this chapter.

The following example shows the use of the disableByteProgressEvents method.

finalise();
begin
    // Disable backup progress (as a number of bytes) events
    self.dba.disableByteProgressEvents;
end;