FileMeasureProgressCallback

This callback type is used by gio.file.File.measureDiskUsage to make periodic progress reports when measuring the amount of disk spaced used by a directory.

These calls are made on a best-effort basis and not all types of #GFile will support them. At the minimum, however, one call will always be made immediately.

In the case that there is no support, reporting will be set to false (and the other values undefined) and no further calls will be made. Otherwise, the reporting will be true and the other values all-zeros during the first (immediate) call. In this way, you can know which type of progress UI to show without a delay.

For gio.file.File.measureDiskUsage the callback is made directly. For gio.file.File.measureDiskUsageAsync the callback is made via the default main context of the calling thread (ie: the same way that the final async result would be reported).

current_size is in the same units as requested by the operation (see gio.types.FileMeasureFlags.ApparentSize).

The frequency of the updates is implementation defined, but is ideally about once every 200ms.

The last progress callback may or may not be equal to the final result. Always check the async result to get the final value.

alias FileMeasureProgressCallback = void delegate
(,,
ulong numDirs
,
ulong numFiles
)