markSeen method
Marks a locally inserted row as seen so the next fetchNext does not return it as a duplicate (the row-insert recipe, master plan ยง5.6.1). Deliberately does NOT move the cursor.
Implementation
void markSeen(int parentMessageId) {
if (parentMessageId > 0) _seenIds.add(parentMessageId);
}