workUpdates property
Every update EXCEPT the durable remount-budget record's own writes
(tg-zlfu) — the workCreates counterpart, for assertions that mean "the
station wrote nothing to the SESSION". Identified by the grid.attempt.
key namespace, which only the budget record carries.
Implementation
List<List<String>> get workUpdates {
return callsFor('update').where((c) {
for (var i = 0; i + 1 < c.length; i++) {
if (c[i] == '--set-metadata' && c[i + 1].startsWith('grid.attempt.')) {
return false;
}
}
return true;
}).toList();
}