$ran
$ran : bool
What one flush did.
Returned rather than logged so a caller decides what to report: cron logs it, Drush prints it, and the settings form shows the last one.
__construct(bool $ran, string|null $reason = null, string|null $segment = null, string|null $commit = null, int $captured = 0, int $stored = 0, int $rawBytes = 0, int $trimmed = 0, float $seconds = 0.0, string|null $skipped = null) : mixed
Constructs a result.
| bool | $ran | Whether a segment was written. FALSE when nothing was pending or no bound had been reached. |
| string|null | $reason | Which flush bound fired, or NULL when none did. |
| string|null | $segment | Object key of the segment written, or NULL when none was. |
| string|null | $commit | Id of the commit appended, or NULL when none was. |
| int | $captured | Operations read out of the journal. |
| int | $stored | Operations that survived collapsing. |
| int | $rawBytes | Decoded payload bytes the operations described. |
| int | $trimmed | Journal rows removed once the segment was sealed. |
| float | $seconds | Wall-clock time the flush took. |
| string|null | $skipped | Why the flush did not run, or NULL when it did. |